Skip to content

Commit 94c972e

Browse files
committed
Fix travis requirements install
pip requires --user flag when installing executables outside of sudo context
1 parent e5638b7 commit 94c972e

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.travis.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
python:
22
- "2.7"
3-
group: deprecated-2017Q3
43
script:
54
- mkdir BUILD
65
# Assert that the Doxygen build produced no warnings.
@@ -36,10 +35,10 @@ before_install:
3635
- python --version
3736
- doxygen --version
3837
install:
39-
- pip install -r requirements.txt
40-
- pip install pytest
41-
- pip install pylint
42-
- pip install hypothesis
43-
- pip install mock
44-
- pip install coverage
45-
- pip install coveralls
38+
- pip install --user -r requirements.txt
39+
- pip install --user pytest
40+
- pip install --user pylint
41+
- pip install --user hypothesis
42+
- pip install --user mock
43+
- pip install --user coverage
44+
- pip install --user coveralls

0 commit comments

Comments
 (0)