easy_install does not respect PYTHONUSERBASE
This commit is contained in:
parent
368ed8b8df
commit
493e49257f
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ install:
|
|||
- psql -c 'create database template_postgis;' -U postgres;
|
||||
- psql -c 'create extension postgis;' -d template_postgis -U postgres;
|
||||
- if [[ ${COVERAGE} == true ]]; then
|
||||
if [[ ! $(which pip) ]]; then easy_install --user pip; fi;
|
||||
if [[ ! $(which pip) ]]; then easy_install --user pip && export PATH=/Users/travis/Library/Python/2.7/bin:${PATH}; fi;
|
||||
pip install --user cpp-coveralls;
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue