blob: fb8618c02be41fae84bc1b47de4ca95d7a71e209 [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
15 @rm -fv ./set_pythonpath
16
Neels Hofmeyr3531a192017-03-28 14:30:28 +020017# vim: noexpandtab tabstop=8 shiftwidth=8