moto/moto/packages/responses/Makefile
2017-02-15 22:45:20 -05:00

16 lines
285 B
Makefile

develop:
pip install -e .
make install-test-requirements
install-test-requirements:
pip install "file://`pwd`#egg=responses[tests]"
test: develop lint
@echo "Running Python tests"
py.test .
@echo ""
lint:
@echo "Linting Python files"
PYFLAKES_NODOCTEST=1 flake8 .
@echo ""