mirror of https://github.com/docker/compose.git
Merge pull request #3671 from dnephin/fix_pip_version_osx
Update pip in travis osx build
This commit is contained in:
commit
967dce5807
|
@ -6,5 +6,5 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||||
tox -e py27,py34 -- tests/unit
|
tox -e py27,py34 -- tests/unit
|
||||||
else
|
else
|
||||||
# TODO: we could also install py34 and test against it
|
# TODO: we could also install py34 and test against it
|
||||||
python -m tox -e py27 -- tests/unit
|
tox -e py27 -- tests/unit
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -5,5 +5,6 @@ set -ex
|
||||||
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||||
pip install tox==2.1.1
|
pip install tox==2.1.1
|
||||||
else
|
else
|
||||||
pip install --user tox==2.1.1
|
sudo pip install --upgrade pip tox==2.1.1 virtualenv
|
||||||
|
pip --version
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue