aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJ08nY2023-08-08 14:04:51 +0200
committerJ08nY2023-08-08 14:04:51 +0200
commit109fec027766630166083c497ea0f0e8052965a4 (patch)
treeb2c5bac0a11c30627f542d98d7c49ace358081d6 /Makefile
parent5e3b6529f8c868b01a1407a6adc2c6b1a74771fb (diff)
downloadpyecsca-109fec027766630166083c497ea0f0e8052965a4.tar.gz
pyecsca-109fec027766630166083c497ea0f0e8052965a4.tar.zst
pyecsca-109fec027766630166083c497ea0f0e8052965a4.zip
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a89fd12..c6b67f4 100644
--- a/Makefile
+++ b/Makefile
@@ -12,13 +12,13 @@ TESTS = ${EC_TESTS} ${SCA_TESTS}
PERF_SCRIPTS = test.ec.perf_mod test.ec.perf_formula test.ec.perf_mult test.sca.perf_combine
test:
- nose2 -E "not slow and not disabled" -C -v ${TESTS}
+ pytest -m "not slow" --cov=pyecsca
test-plots:
- env PYECSCA_TEST_PLOTS=1 nose2 -E "not slow and not disabled" -C -v ${TESTS}
+ env PYECSCA_TEST_PLOTS=1 pytest -m "not slow"
test-all:
- nose2 -C -v ${TESTS}
+ pytest --cov=pyecsca
typecheck:
mypy --namespace-packages -p pyecsca --ignore-missing-imports --show-error-codes --check-untyped-defs