diff options
| author | J08nY | 2025-11-21 12:13:02 +0100 |
|---|---|---|
| committer | J08nY | 2025-11-21 12:13:18 +0100 |
| commit | ef35b38b8ebbf7228cb8baba20e44a48ca308c37 (patch) | |
| tree | f8d14389e00fd246443cc10b4e7dd1d2af12c610 /Makefile | |
| parent | add8b011b1d4ec1f84e6cb0fc20c10851557b7b2 (diff) | |
| download | pyecsca-ef35b38b8ebbf7228cb8baba20e44a48ca308c37.tar.gz pyecsca-ef35b38b8ebbf7228cb8baba20e44a48ca308c37.tar.zst pyecsca-ef35b38b8ebbf7228cb8baba20e44a48ca308c37.zip | |
Fix tests without optional packages.
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |
