aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJ08nY2025-11-21 12:13:02 +0100
committerJ08nY2025-11-21 12:13:18 +0100
commitef35b38b8ebbf7228cb8baba20e44a48ca308c37 (patch)
treef8d14389e00fd246443cc10b4e7dd1d2af12c610
parentadd8b011b1d4ec1f84e6cb0fc20c10851557b7b2 (diff)
downloadpyecsca-ef35b38b8ebbf7228cb8baba20e44a48ca308c37.tar.gz
pyecsca-ef35b38b8ebbf7228cb8baba20e44a48ca308c37.tar.zst
pyecsca-ef35b38b8ebbf7228cb8baba20e44a48ca308c37.zip
Fix tests without optional packages.
Diffstat (limited to '')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ae727d2..67ecd7e 100644
--- a/Makefile
+++ b/Makefile
@@ -3,16 +3,16 @@ PERF_SCRIPTS = test.ec.perf_mod test.ec.perf_formula test.ec.perf_mult test.sca.
all: help
test:
- pytest -m "not slow" --cov=pyecsca
+ pytest -m "not slow" --cov=pyecsca --doctest-ignore-import-errors
test-plots:
- env PYECSCA_TEST_PLOTS=1 pytest -m "not slow"
+ env PYECSCA_TEST_PLOTS=1 pytest -m "not slow" --doctest-ignore-import-errors
test-all:
- pytest --cov=pyecsca
+ pytest --cov=pyecsca --doctest-ignore-import-errors
test-notebooks:
- pytest -m "not slow" --nbmake --cov=pyecsca --cov-append notebook/simulation.ipynb notebook/visualization.ipynb
+ pytest -m "not slow" --doctest-ignore-import-errors --nbmake --cov=pyecsca --cov-append notebook/simulation.ipynb notebook/visualization.ipynb
typecheck:
mypy --namespace-packages -p pyecsca --ignore-missing-imports --show-error-codes --check-untyped-defs