Skip to content

Commit

Permalink
Add Makefile for testing and publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jbernard committed Jul 7, 2014
1 parent 5abf9f0 commit a44bb8e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
test:
@cd tests && PYTHONPATH=../ py.test

publish-test:
@python setup.py sdist upload -r pypi
@python setup.py bdist_wheel upload -r pypi

publish-pypi:
@python setup.py sdist upload -r pypi
@python setup.py bdist_wheel upload -r pypi

.PHONY: test publish-test publish-pypi

0 comments on commit a44bb8e

Please sign in to comment.