aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJ08nY2023-09-28 18:10:38 +0200
committerJ08nY2023-09-28 18:10:38 +0200
commit9c6acdd2409c49c2ae64a8c41df315a1eca3eea7 (patch)
treea79a90c4e078c44824c41ff3f1b1ba40fe97db71
parent0b250f49cbd8961dbfebe399b7063412941cf948 (diff)
downloadpyecsca-codegen-9c6acdd2409c49c2ae64a8c41df315a1eca3eea7.tar.gz
pyecsca-codegen-9c6acdd2409c49c2ae64a8c41df315a1eca3eea7.tar.zst
pyecsca-codegen-9c6acdd2409c49c2ae64a8c41df315a1eca3eea7.zip
Fix Makefile.
-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