From ef35b38b8ebbf7228cb8baba20e44a48ca308c37 Mon Sep 17 00:00:00 2001 From: J08nY Date: Fri, 21 Nov 2025 12:13:02 +0100 Subject: Fix tests without optional packages. --- Makefile | 8 ++++---- 1 file 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 -- cgit v1.3.1