Loading build-and-test-py-project.sh +5 −3 Original line number Diff line number Diff line Loading @@ -25,8 +25,10 @@ if test "$py_version" = "2.5"; then hash -r which easy_install easy_install 'pip==1.3.1' PIP="pip --insecure" else curl -k https://raw.github.com/pypa/pip/1.4/contrib/get-pip.py | python - PIP="pip" fi # Not sure why the hell pip ends up there, but in Py3.3, it sometimes does. Loading @@ -34,15 +36,15 @@ export PATH=`pwd`/.env/local/bin:$PATH if test "$EXTRA_INSTALL" != ""; then for i in $EXTRA_INSTALL ; do pip install $i $PIP install $i done fi if test -f requirements.txt; then pip install -r requirements.txt $PIP install -r requirements.txt fi pip install pytest $PIP install pytest ${py_exe} setup.py install Loading Loading
build-and-test-py-project.sh +5 −3 Original line number Diff line number Diff line Loading @@ -25,8 +25,10 @@ if test "$py_version" = "2.5"; then hash -r which easy_install easy_install 'pip==1.3.1' PIP="pip --insecure" else curl -k https://raw.github.com/pypa/pip/1.4/contrib/get-pip.py | python - PIP="pip" fi # Not sure why the hell pip ends up there, but in Py3.3, it sometimes does. Loading @@ -34,15 +36,15 @@ export PATH=`pwd`/.env/local/bin:$PATH if test "$EXTRA_INSTALL" != ""; then for i in $EXTRA_INSTALL ; do pip install $i $PIP install $i done fi if test -f requirements.txt; then pip install -r requirements.txt $PIP install -r requirements.txt fi pip install pytest $PIP install pytest ${py_exe} setup.py install Loading