aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorbenadha <benawiadha@gmail.com>2022-01-10 20:39:11 +0700
committerbenadha <benawiadha@gmail.com>2022-01-10 20:39:11 +0700
commitae8092351b2e7ed2d58df8d56bcb4a014ce7a29e (patch)
tree1c1977deaf415389cb1f9be7758f3c2502563d14 /Makefile
parent2e23de06b1c1a20172aa60b72848a460105ec260 (diff)
downloadepy-ae8092351b2e7ed2d58df8d56bcb4a014ce7a29e.tar.gz
Added tests command in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9c981cb..0d9e264 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,12 @@
+.PHONY: tests
+.DEFAULT_GOAL := tests
+
+requirements:
+ poetry install --no-root
+
+tests:
+ python -m pytest -vv
+
release:
python setup.py sdist bdist_wheel
twine upload --skip-existing dist/*