blob: 825e3c7493377a5ee8ff6ecc417fb3f6eaf54ad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
test:
nose2 -A !slow -C -v
test-plots:
env PYECSCA_TEST_PLOTS=1 nose2 -A !slow -C -v
test-all:
nose2 -C -v
typecheck:
mypy -p pyecsca --ignore-missing-imports
.PHONY: test test-plots test-all typecheck
|