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

include ../config.env
.EXPORT_ALL_VARIABLES: test

TESTS := $(wildcard test_*.py)

test:
	@sdcc --version
	python3 -m unittest $(TESTS)

.PHONY: test default