summaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: a844aa4e4c30b732f386c4f2d15153f021f0442a (plain)
1
2
3
4
5
6
7
TESTS = $(wildcard test_*.py)

test:
	@- $(foreach TEST,$(TESTS), \
		echo === Running test: $(TEST); \
		python $(TEST); \
		)