7 lines
107 B
Makefile
7 lines
107 B
Makefile
|
|
.PHONY: check test
|
||
|
|
|
||
|
|
check: test
|
||
|
|
|
||
|
|
test:
|
||
|
|
PYTHONDONTWRITEBYTECODE=1 python3 -m unittest discover -s tests -v
|