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

Use virtualenv on non-Python based host image to run depclose tests #81

Merged
merged 1 commit into from Jul 25, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,9 @@ rust:
- nightly
before_install:
- sudo apt-get update
- virtualenv ./depclose
- source ./depclose/bin/activate
- pip install --upgrade pip
- pip install -r ./tests/depclose-integration/requirements.txt
- |
LOCAL="~/.local" && export PATH=$LOCAL/bin:$PATH &&
Expand All @@ -14,6 +17,9 @@ before_install:
addons:
apt:
packages:
# to fix Permission denied when installing pip packages
# b/c Travis will use system-wide Python when language != python
- python-virtualenv
# dependencies for bdcs-api-rs
- libssh2-1-dev
# used by Makefile
Expand Down