diff --git a/Makefile b/Makefile index 10c3af1..601982d 100644 --- a/Makefile +++ b/Makefile @@ -88,11 +88,15 @@ sdist-upload: distclean deps-dev $(TWINE) upload dist/*; \ fi -deps-dev: pyenv-install-versions +deps-dev: pyenv-install-versions parallel-is-installed # Uploads to test server, unless the release target was run too upload: test clean sdist-upload +# The testall.sh script uses parallel +parallel-is-installed: + parallel --version &>/dev/null || (echo "ERROR: parallel not installed" && false) + pyenv-is-installed: pyenv --version &>/dev/null || (echo "ERROR: pyenv not installed" && false) @@ -137,6 +141,7 @@ env: install-develop \ pyenv-install-versions \ pyenv-is-installed \ + parallel-is-installed \ uninstall \ register \ release \