aboutsummaryrefslogblamecommitdiffstats
path: root/Makefile
blob: d999282d4f40fb9b52ad7c5f5ce989237ed1d058 (plain) (tree)
1
2
3
4
5
6
7
8
9


                      
    




                                




                                                         


                                           
.PHONY: tests
.DEFAULT_GOAL := tests

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/*