aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: faeaacbec1a2ecb702f0a2bbeac04a9558bbae2a (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_simulator

test:
	pytest -m "not slow" --cov=pyecsca.codegen

test-all:
	pytest --cov=pyecsca.codegen

typecheck:
	mypy pyecsca --ignore-missing-imports

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

.PHONY: test test-all typecheck codestyle