diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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/* |