summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 1c0698f4ef29a1f6457fa78c1bb3eb77cfababf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: dist test install clean twine

install:
	pip3 install -e .
test:
	pytest tests --cov=./gita $(TEST_ARGS) -n=auto -vv
dist:
	python3 setup.py sdist
twine:
	twine upload dist/*
clean:
	git clean -fdx