diff --git a/Makefile b/Makefile index 0c08532..481d6bd 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,12 @@ trier: python trier/generate_tracks.py EMMENTAL_TESTING=1 python -m unittest discover -v +.PHONY: tests +tests: + python trier/generate_tracks.py + find `pwd` -name 'test_*.py' -not -path '*/curds/*' -not -path '*/rind/*' -not -path '*test_emmental.py' \ + | EMMENTAL_TESTING=1 xargs python -m unittest -v + .PHONY:cover cover: python trier/generate_tracks.py