aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorJ08nY2020-02-10 15:45:20 +0100
committerJ08nY2020-02-10 15:45:20 +0100
commitf788291bd6d4b6c967ecad5aad3f290308ffb21c (patch)
tree845fd983750ffc0407e4fa20a20156b9494208e8 /Makefile
parent2398053e00e4b29f75032c6e099b32f54d122751 (diff)
downloadpyecsca-codegen-f788291bd6d4b6c967ecad5aad3f290308ffb21c.tar.gz
pyecsca-codegen-f788291bd6d4b6c967ecad5aad3f290308ffb21c.tar.zst
pyecsca-codegen-f788291bd6d4b6c967ecad5aad3f290308ffb21c.zip
Cleanup builder.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..71be080
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+TESTS = test_builder
+
+test:
+ nose2 -s test -A !slow -C -v ${TESTS}
+
+test-all:
+ nose2 -s test -C -v ${TESTS}
+
+typecheck:
+ mypy pyecsca --ignore-missing-imports
+
+codestyle:
+ flake8 --ignore=E501,F405,F403,F401,E126 pyecsca
+
+.PHONY: test test-all typecheck codestyle \ No newline at end of file