blob: 53d882c1593fbbcc8fdc12b60c854035b81c69e3 [file] [log] [blame]
Neels Hofmeyr3531a192017-03-28 14:30:28 +02001.PHONY: check update
2
3check: set_pythonpath
4 ./all_tests.py
5
6update:
7 ./all_tests.py -u
8
9set_pythonpath:
10 echo "export PYTHONPATH=\"$(PWD)/../src\"" > set_pythonpath
11
Pau Espin Pedrol94e7ef02020-05-07 13:49:07 +020012clean:
13 @find . -name "*__pycache__" -type d -print0 | xargs -0 rm -rvf
14 @find . -name "*test_work" -type d -print0 | xargs -0 rm -rvf
Pau Espin Pedrol6e0b6fb2020-05-25 19:49:29 +020015 @rm -rfv ./trial_test/run_label/inst
Pau Espin Pedrol94e7ef02020-05-07 13:49:07 +020016 @rm -fv ./set_pythonpath
17
Neels Hofmeyr3531a192017-03-28 14:30:28 +020018# vim: noexpandtab tabstop=8 shiftwidth=8