blob: c67d4a72cfd336821401e47494e39497955e0555 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.PHONY: dist test install clean twine
install:
pip3 install -e .
test: clean
pytest tests --cov=./gita $(TEST_ARGS) -n=auto
dist: clean
python3 setup.py sdist
twine:
twine upload dist/*
clean:
git clean -fdx
|