diff options
| author | J08nY | 2023-08-08 14:04:51 +0200 |
|---|---|---|
| committer | J08nY | 2023-08-08 14:04:51 +0200 |
| commit | 109fec027766630166083c497ea0f0e8052965a4 (patch) | |
| tree | b2c5bac0a11c30627f542d98d7c49ace358081d6 /Makefile | |
| parent | 5e3b6529f8c868b01a1407a6adc2c6b1a74771fb (diff) | |
| download | pyecsca-109fec027766630166083c497ea0f0e8052965a4.tar.gz pyecsca-109fec027766630166083c497ea0f0e8052965a4.tar.zst pyecsca-109fec027766630166083c497ea0f0e8052965a4.zip | |
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
