Skip to content

Commit

Permalink
Don't install pyinstaller and s3cmd in jobs that don't need it
Browse files Browse the repository at this point in the history
This will also probably circumvent the pip 19.0 pyinstaller
[bug](pypa/pip#6163) that hit us in all
Travis jobs. Example: https://travis-ci.org/raiden-network/raiden/jobs/483407811
  • Loading branch information
LefterisJP committed Jan 23, 2019
1 parent 6b2c998 commit a750fc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,10 @@ jobs:
- git fetch --unshallow
- git pull --tags
- .travis/before_install.sh
install: .travis/install.sh
install:
- .travis/install.sh
- pip install s3cmd
- pip install pyinstaller
script:
- source .travis/set_tag.sh
- REPO=${TRAVIS_REPO_SLUG} RAIDENVERSION=${TRAVIS_COMMIT} make bundle-docker
Expand Down
2 changes: 0 additions & 2 deletions .travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ fi

pip install ${INSTALL_OPT} --upgrade pip wheel
pip install ${INSTALL_OPT} pytest-travis-fold
pip install ${INSTALL_OPT} s3cmd
pip install ${INSTALL_OPT} pyinstaller
pip install ${INSTALL_OPT} -c constraints.txt --upgrade --upgrade-strategy eager -r requirements-dev.txt
pip install ${INSTALL_OPT} -c constraints.txt -e .

Expand Down

0 comments on commit a750fc7

Please sign in to comment.