Thanks to visit codestin.com
Credit goes to github.com

Skip to content

CI: do not create venv on travis #9060

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 21, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
CI: do not create venv on travis
This is to save time and pick up the numpy master build now available
by default in the nightly
run (numpy/numpy#9578 (comment))
  • Loading branch information
tacaswell committed Aug 19, 2017
commit a377fc8c30d26be56727743a8fb65476fea38b9f
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,7 @@ matrix:

before_install:
- |
# Install into our own pristine virtualenv
if [[ $TRAVIS_OS_NAME != 'osx' ]]; then
pip install --upgrade virtualenv
python -m virtualenv venv
source venv/bin/activate
# test with non-ascii in path
mkdir /tmp/λ
export PATH=$PATH:/tmp/λ
Expand All @@ -106,7 +102,7 @@ install:
pip install --upgrade pip setuptools wheel
- |
# Install dependencies from pypi
pip install $PRE \
pip install -v $PRE \
$MOCK \
$NOSE \
$NUMPY \
Expand Down