Skip to content

Commit

Permalink
Special case for pypy3 on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
CleanCut committed May 25, 2016
1 parent 9247443 commit ab5cfe8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test_versions
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ for PYTHON_VERSION in ${PYTHON_VERSIONS} ; do
exit 5
fi

# Don't know why this is only a problem on linux+pypy3+travisci
if [ "${TRAVIS_PYTHON_VERSION}" == "pypy3" ] ; then
pip install virtualenv
fi

if ! ${PYTHON} -m virtualenv --version > /dev/null ; then
echo "Please install virtualenv under ${PYTHON}"
exit 6
Expand Down

0 comments on commit ab5cfe8

Please sign in to comment.