From 1302b0b93c236f6e15440ca2eeb9a6e25e6df7f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Tue, 4 Apr 2017 11:30:56 +0200 Subject: [PATCH] Fixed pip tests (added version) --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0677ab7..96633ce 100644 --- a/Makefile +++ b/Makefile @@ -58,8 +58,10 @@ test-%: build-% test: test-$(PYMAIN) -dist/$(TARNAME): +dist/$(TARNAME): version docker run --rm -ti -v $$PWD:/usr/src/app/ -w /usr/src/app/ python:$(PYMAIN) python setup.py sdist; + docker run --rm -ti -v $$PWD:/usr/src/app/ -w /usr/src/app/ python:$(PYMAIN) chmod -R a+rwx dist; + sdist: dist/$(TARNAME) @@ -83,7 +85,7 @@ git_tag: git_push: git push --tags origin master -pip_upload: +pip_upload: pip_test python setup.py sdist upload ; run-%: build-%