13 lines
331 B
Bash
13 lines
331 B
Bash
#!/usr/bin/env bash
|
|
|
|
# use this to run tests
|
|
rm -rf _ckpt_*
|
|
rm -rf ./tests/save_dir*
|
|
rm -rf ./tests/mlruns_*
|
|
rm -rf ./tests/cometruns*
|
|
rm -rf ./tests/wandb*
|
|
rm -rf ./tests/tests/*
|
|
rm -rf ./lightning_logs
|
|
coverage run --source pytorch_lightning -m py.test pytorch_lightning tests pl_examples -v --doctest-modules
|
|
coverage report -m
|