Files
openapi-generator/samples/client/petstore/python/Makefile
2015-07-14 09:39:19 +08:00

21 lines
354 B
Makefile

#!/bin/sh
REQUIREMENTS_FILE=dev-requirements.txt
REQUIREMENTS_OUT=dev-requirements.txt.log
SETUP_OUT=*.egg-info
VENV=.venv
clean:
rm -rf $(REQUIREMENTS_OUT)
rm -rf $(SETUP_OUT)
rm -rf .tox
rm -rf .coverage
find . -name "*.py[oc]" -delete
find . -name "__pycache__" -delete
test: clean
sh ./test.sh
test-all: clean
sh ./test-all.sh