diff options
| author | J08nY | 2023-09-28 18:10:38 +0200 |
|---|---|---|
| committer | J08nY | 2023-09-28 18:10:38 +0200 |
| commit | 9c6acdd2409c49c2ae64a8c41df315a1eca3eea7 (patch) | |
| tree | a79a90c4e078c44824c41ff3f1b1ba40fe97db71 | |
| parent | 0b250f49cbd8961dbfebe399b7063412941cf948 (diff) | |
| download | pyecsca-codegen-9c6acdd2409c49c2ae64a8c41df315a1eca3eea7.tar.gz pyecsca-codegen-9c6acdd2409c49c2ae64a8c41df315a1eca3eea7.tar.zst pyecsca-codegen-9c6acdd2409c49c2ae64a8c41df315a1eca3eea7.zip | |
Fix Makefile.
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ TESTS = test_builder test_client test_render test_impl test_simulator test: - nose2 -s test -A !slow -C -v ${TESTS} + pytest -m "not slow" --cov=pyecsca.codegen test-all: - nose2 -s test -C -v ${TESTS} + pytest --cov=pyecsca.codegen typecheck: mypy pyecsca --ignore-missing-imports |
