lightning/.run_local_tests.sh

10 lines
278 B
Bash
Raw Normal View History

2019-10-05 17:47:33 +00:00
# use this to run tests
2019-10-17 22:19:01 +00:00
rm -rf _ckpt_*
rm -rf tests/save_dir*
2019-10-04 19:58:54 +00:00
rm -rf tests/mlruns_*
rm -rf tests/cometruns*
rm -rf tests/tests/*
rm -rf lightning_logs
2019-10-21 21:20:20 +00:00
coverage run --source pytorch_lightning -m py.test pytorch_lightning tests pl_examples -v --doctest-modules
2019-10-05 17:47:33 +00:00
coverage report -m