python-click/Makefile

12 lines
251 B
Makefile
Raw Normal View History

2014-10-16 20:40:34 +02:00
test:
2018-09-06 20:55:10 +02:00
@cd tests; PYTHONPATH=.. pytest --tb=short
2014-10-16 20:40:34 +02:00
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