Removing pip update on .travis.yml (Advice from @szeck87)
This commit is contained in:
parent
3b81af1b22
commit
e4e59e5073
|
@ -67,12 +67,10 @@ before_install:
|
||||||
curl https://nixos.org/nix/install | sh &&
|
curl https://nixos.org/nix/install | sh &&
|
||||||
. ~/.nix-profile/etc/profile.d/nix.sh &&
|
. ~/.nix-profile/etc/profile.d/nix.sh &&
|
||||||
nix-env -i uncrustify R elm-format terraform atom atom-beta opam &&
|
nix-env -i uncrustify R elm-format terraform atom atom-beta opam &&
|
||||||
pip install --upgrade pip &&
|
|
||||||
pip install --user -r requirements.txt;
|
pip install --user -r requirements.txt;
|
||||||
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
brew update && brew cask zap oclint && brew bundle &&
|
brew update && brew cask zap oclint && brew bundle &&
|
||||||
ln -s /usr/local/bin/elm-format-0.17 /usr/local/bin/elm-format &&
|
ln -s /usr/local/bin/elm-format-0.17 /usr/local/bin/elm-format &&
|
||||||
pip2 install --upgrade pip &&
|
|
||||||
pip2 install -r requirements.txt;
|
pip2 install -r requirements.txt;
|
||||||
else
|
else
|
||||||
echo Error:TRAVIS_OS_NAME && exit 1;
|
echo Error:TRAVIS_OS_NAME && exit 1;
|
||||||
|
|
Loading…
Reference in New Issue