Update paths after moving library to root directory

This commit is contained in:
Łukasz Oleś 2015-11-23 16:12:37 +01:00
parent 966327979d
commit 45a26119ef
3 changed files with 8 additions and 7 deletions

View File

@ -8,10 +8,10 @@ cache:
install:
- pip install pip-accel
- pip-accel install coveralls
- pip-accel install -r solar/test-requirements.txt
- pip-accel install -r test-requirements.txt
script:
- cd solar && py.test --cov=solar -s solar && cd ..
- py.test --cov=solar -s solar && cd ..
services:
- riak
after_success:
cd solar && coveralls
cd && coveralls

View File

@ -4,7 +4,9 @@
sudo: yes
tasks:
# Setup development env for solar
- shell: pip install -e . chdir=/vagrant/solar
- apt: name=libssl-dev state=present
- apt: name=libffi-dev state=present
- shell: pip install -e . chdir=/vagrant
- shell: pip install -e . chdir=/vagrant/solard
- hosts: all

View File

@ -30,8 +30,7 @@ fi
. $VENV/bin/activate
pip install pip-accel
pip-accel install -r solar/test-requirements.txt
pip-accel install -r test-requirements.txt
pushd solar
SOLAR_CONFIG=../.config PYTHONPATH=$WORKSPACE/solar CONFIG_FILE=$CONFIG_FILE py.test --cov=solar -s solar/test
SOLAR_CONFIG=../.config CONFIG_FILE=$CONFIG_FILE py.test --cov=solar -s solar/test