aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 42858a75bb08b1fcc83bdd3287e8e1e73df08cdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TESTS = test_builder test_client test_render test_impl

test:
	nose2 -s test -A !slow -C -v ${TESTS}

test-all:
	nose2 -s test -C -v ${TESTS}

typecheck:
	mypy pyecsca --ignore-missing-imports

codestyle:
	flake8 --ignore=E501,F405,F403,F401,E126 pyecsca

.PHONY: test test-all typecheck codestyle