python-click/Makefile

12 lines
252 B
Makefile
Raw Normal View History

2014-10-16 20:40:34 +02:00
test:
@cd tests; PYTHONPATH=.. py.test --tb=short
upload-docs:
$(MAKE) -C docs dirhtml
rsync -a docs/_build/dirhtml/* flow.srv.pocoo.org:/srv/websites/click.pocoo.org/static/
2015-12-04 16:51:02 +01:00
release:
python setup.py sdist bdist_wheel upload
2014-10-16 20:40:34 +02:00
.PHONY: upload-docs