Skip to content
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

pip accel in tests instead of plain pip #195

Merged
merged 2 commits into from
Sep 24, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
language: python
python: 2.7
env:
- PIP_ACCEL_CACHE=$HOME/.pip-accel-cache
cache:
directories:
- $HOME/.cache/pip
- $HOME/.pip-accel-cache
install:
- pip install coveralls
- pip install pip-accel
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you can remove it from here

- pip-accel install coveralls
script:
- ./run_tests.sh
services:
Expand Down
3 changes: 2 additions & 1 deletion run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ fi

. $VENV/bin/activate

pip install -r solar/test-requirements.txt --download-cache=/tmp/$JOB_NAME
pip install pip-accel
pip-accel install -r solar/test-requirements.txt

pushd solar

Expand Down