Skip to content

Commit 4f17bf3

Browse files
committed
Fix installing requirements.txt failing silently
1 parent 2489ea8 commit 4f17bf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install:
1212
- sudo apt-get update
1313
- sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev gfortran libhdf5-dev
1414
- pip install -r test/requirements-dev.txt
15-
- find . -name "requirements.txt" -exec pip install -r "{}" \;
15+
- find . -name "requirements.txt" | tr '\n' '\0' | xargs -0 -n1 pip install -r
1616

1717
script:
1818
# Test that notebooks run successfully

0 commit comments

Comments
 (0)