Skip to content

Commit

Permalink
Test/CI: Use --progress-bar=off intead of cat for pip install.
Browse files Browse the repository at this point in the history
  • Loading branch information
bjones1 committed Sep 3, 2018
1 parent e7fc764 commit 5de6c71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -158,10 +158,10 @@ install:
- python -m pip install -U pip setuptools wheel | cat

# Install dependencies for tests.
- pip install -U -r tests/requirements-tools.txt | cat
- pip install --progress-bar=off -U -r tests/requirements-tools.txt
- >
if [[ $TRAVIS_BUILD_STAGE_NAME == 'Test - libraries' ]] ; then
pip install -U -r tests/requirements-libraries.txt | cat
pip install --progress-bar=off -U -r tests/requirements-libraries.txt
fi
# Compile bootloader
Expand All @@ -170,7 +170,7 @@ install:
- cd ..

# Install PyInstaller.
- pip install -e . | cat
- pip install --progress-bar=off -e .

# Make sure the help options print.
- python -m pyinstaller -h
Expand Down

0 comments on commit 5de6c71

Please sign in to comment.