aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: 2d741faf3be2dbc20310217f1b0cc3b7fa4bccaa (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 $(shell sed 's/=.*//' ../config.env)

TESTS := $(wildcard test_*.py)

test:
	python3 -m unittest $(TESTS)

.PHONY: test default