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

include ../config.env
.EXPORT_ALL_VARIABLES: test

TESTS := $(wildcard test_*.py)

test:
	python3 -m unittest $(TESTS)

.PHONY: test default