blob: 0d9e264a86a673b8be2a26fe086c3d0ddb21477b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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/*
|