Skip to content
This repository has been archived by the owner on Apr 6, 2019. It is now read-only.

Commit

Permalink
Debug slow pip installations breaking our Travis CI builds (mlflow#515)
Browse files Browse the repository at this point in the history
Fix slow pip installations breaking our Travis CI builds
  • Loading branch information
smurching committed Sep 19, 2018
1 parent 076a39b commit f8ea5c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -92,3 +92,6 @@ target/
# R notebooks
.Rproj.user
example/tutorial/R/*.nb.html

# travis_wait command logs
travis_wait*.log
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -65,8 +65,8 @@ install:
- pip install --upgrade pip
# Install Python test dependencies only if we're running Python tests
- if [[ ! -z "$TRAVIS_PYTHON_VERSION" ]]; then
pip install -r dev-requirements.txt -q;
pip install -r test-requirements.txt -q;
travis_wait pip install -r dev-requirements.txt -q;
travis_wait pip install -r test-requirements.txt -q;
fi
- pip install .
- export MLFLOW_HOME=$(pwd)
Expand Down

0 comments on commit f8ea5c1

Please sign in to comment.