aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: 6c1a9a4f84d1b2e1f620ab3c5701f147b26c2316 (plain)
1
2
3
4
5
6
7
8
9
10
default:
	$(error Please use the Makefile from root directory)

TESTS := $(wildcard test_*.py)

test:
	python3 -m unittest $(TESTS)

.PHONY: test default