aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 790a977..faeaacb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
TESTS = test_builder test_client test_render test_impl test_simulator
test:
- nose2 -s test -A !slow -C -v ${TESTS}
+ pytest -m "not slow" --cov=pyecsca.codegen
test-all:
- nose2 -s test -C -v ${TESTS}
+ pytest --cov=pyecsca.codegen
typecheck:
mypy pyecsca --ignore-missing-imports