Skip to content

Commit

Permalink
Fix installing requirements.txt failing silently
Browse files Browse the repository at this point in the history
  • Loading branch information
natanlao committed Dec 18, 2019
1 parent 2489ea8 commit 4f17bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ install:
- sudo apt-get update
- sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev gfortran libhdf5-dev
- pip install -r test/requirements-dev.txt
- find . -name "requirements.txt" -exec pip install -r "{}" \;
- find . -name "requirements.txt" | tr '\n' '\0' | xargs -0 -n1 pip install -r

script:
# Test that notebooks run successfully
Expand Down

0 comments on commit 4f17bf3

Please sign in to comment.