Skip to content

Commit a750fc7

Browse files
committed
Don't install pyinstaller and s3cmd in jobs that don't need it
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
1 parent 6b2c998 commit a750fc7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,10 @@ jobs:
180180
- git fetch --unshallow
181181
- git pull --tags
182182
- .travis/before_install.sh
183-
install: .travis/install.sh
183+
install:
184+
- .travis/install.sh
185+
- pip install s3cmd
186+
- pip install pyinstaller
184187
script:
185188
- source .travis/set_tag.sh
186189
- REPO=${TRAVIS_REPO_SLUG} RAIDENVERSION=${TRAVIS_COMMIT} make bundle-docker

.travis/install.sh

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ fi
1111

1212
pip install ${INSTALL_OPT} --upgrade pip wheel
1313
pip install ${INSTALL_OPT} pytest-travis-fold
14-
pip install ${INSTALL_OPT} s3cmd
15-
pip install ${INSTALL_OPT} pyinstaller
1614
pip install ${INSTALL_OPT} -c constraints.txt --upgrade --upgrade-strategy eager -r requirements-dev.txt
1715
pip install ${INSTALL_OPT} -c constraints.txt -e .
1816

0 commit comments

Comments
 (0)