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