aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 3d19252810d11571db738e2ad5c3a0f0b57255aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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