aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJ08nY2019-11-29 20:22:20 +0100
committerJ08nY2019-11-29 20:22:20 +0100
commitf55dcac64125508d0454d17fe54ab87bb7816930 (patch)
tree48cd5b22b6513ea697e6cc7541be41b2564d5a29 /Makefile
parente5605f768f407341c3eda6a5d7d3a4a5d63483c9 (diff)
downloadpyecsca-f55dcac64125508d0454d17fe54ab87bb7816930.tar.gz
pyecsca-f55dcac64125508d0454d17fe54ab87bb7816930.tar.zst
pyecsca-f55dcac64125508d0454d17fe54ab87bb7816930.zip
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 12 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 825e3c7..1d7b84d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,21 @@
+EC_TESTS = ec.test_context ec.test_curve ec.test_group ec.test_key_agreement ec.test_mod ec.test_model \
+ec.test_mult ec.test_naf ec.test_point ec.test_signature
+
+SCA_TESTS = sca.test_align sca.test_combine sca.test_edit sca.test_filter sca.test_match sca.test_process \
+sca.test_sampling sca.test_test sca.test_trace sca.test_traceset
+
+TESTS = ${EC_TESTS} ${SCA_TESTS}
+
test:
- nose2 -A !slow -C -v
+ nose2 -s test -A !slow -C -v ${TESTS}
test-plots:
- env PYECSCA_TEST_PLOTS=1 nose2 -A !slow -C -v
+ env PYECSCA_TEST_PLOTS=1 nose2 -s test -A !slow -C -v ${TESTS}
test-all:
- nose2 -C -v
+ nose2 -s test -C -v ${TESTS}
typecheck:
- mypy -p pyecsca --ignore-missing-imports
+ mypy pyecsca --ignore-missing-imports
.PHONY: test test-plots test-all typecheck \ No newline at end of file