1
0
Fork 0
gita/Makefile
Daniel Baumann a9c588f707
Adding upstream version 0.10.9.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-11 18:25:06 +01:00

12 lines
214 B
Makefile

.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