mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-16 17:50:39 +00:00
19 lines
229 B
Makefile
19 lines
229 B
Makefile
.PHONY: all clean tag test
|
|
|
|
PACKAGE_VERSION=$(shell python setup.py --version)
|
|
|
|
all: test
|
|
|
|
clean:
|
|
git clean -fdx -- debian
|
|
rm -f ./dist
|
|
find . -iname '*.pyc' -delete
|
|
|
|
tag:
|
|
git tag v${PACKAGE_VERSION}
|
|
|
|
test:
|
|
tox
|
|
|
|
tests: test
|