diff options
author | Jon Bernard <jbernard@tuxion.com> | 2014-07-10 01:00:56 -0400 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2014-07-10 01:00:56 -0400 |
commit | 083dd0d5b0f2a2c35aa9587c53078491bbc1217e (patch) | |
tree | 1aabb7962c2c8f922264373bd740666552220a52 | |
parent | 39f4f799ab650054a70967b632281c9fde38bcd0 (diff) | |
download | dotfiles-083dd0d5b0f2a2c35aa9587c53078491bbc1217e.tar.gz dotfiles-083dd0d5b0f2a2c35aa9587c53078491bbc1217e.tar.bz2 dotfiles-083dd0d5b0f2a2c35aa9587c53078491bbc1217e.zip |
Remove test publish target from makefile
-rw-r--r-- | Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -1,12 +1,8 @@ test: @PYTHONPATH=$$PWD py.test -publish-test: - @python setup.py sdist upload -r test - @python setup.py bdist_wheel upload -r test - -publish-pypi: +publish: @python setup.py sdist upload -r pypi @python setup.py bdist_wheel upload -r pypi -.PHONY: test publish-test publish-pypi +.PHONY: test publish |