aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0d9e264..d999282 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,17 @@
.PHONY: tests
.DEFAULT_GOAL := tests
-requirements:
+dev:
poetry install --no-root
tests:
python -m pytest -vv
+coverage:
+ coverage run --include=epy.py -m pytest -vv tests
+ coverage html
+ python -m http.server -d htmlcov
+
release:
python setup.py sdist bdist_wheel
twine upload --skip-existing dist/*