aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorJ08nY2021-01-20 02:28:35 +0100
committerJ08nY2021-01-20 02:28:35 +0100
commit7b9d67964807df4a7dd5de9e63f8ebf21a93850f (patch)
tree1c019ed2ec5046fc0eefa85cdd642c64467b1b62 /Makefile
parent950811a3e6a995e8bd3b2063777aeddd2bee1b0f (diff)
downloadpyecsca-7b9d67964807df4a7dd5de9e63f8ebf21a93850f.tar.gz
pyecsca-7b9d67964807df4a7dd5de9e63f8ebf21a93850f.tar.zst
pyecsca-7b9d67964807df4a7dd5de9e63f8ebf21a93850f.zip
Introduce symbolic Mod.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0498208..b5457ae 100644
--- a/Makefile
+++ b/Makefile
@@ -19,9 +19,15 @@ test-all:
typecheck:
mypy pyecsca --ignore-missing-imports --show-error-codes
+typecheck-all:
+ mypy pyecsca test --ignore-missing-imports --show-error-codes
+
codestyle:
flake8 --ignore=E501,F405,F403,F401,E126 pyecsca
+codestyle-all:
+ flake8 --ignore=E501,F405,F403,F401,E126 pyecsca test
+
doc-coverage:
interrogate -vv -nmps pyecsca
@@ -29,4 +35,4 @@ docs:
$(MAKE) -C docs apidoc
$(MAKE) -C docs html
-.PHONY: test test-plots test-all typecheck codestyle doc-coverage docs \ No newline at end of file
+.PHONY: test test-plots test-all typecheck typecheck-all codestyle codestyle-all doc-coverage docs \ No newline at end of file