Skip to content

Commit 600ac3a

Browse files
author
aviau
committed
Merge branch 'travis_containers'
2 parents cfa4015 + 7ca7e7b commit 600ac3a

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.travis.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,21 @@ env:
1010
- TOX_ENV=flake8
1111
- TOX_ENV=coverage
1212
install:
13-
- sudo pip install tox
14-
- sudo pip install coveralls
15-
- wget https://s3.amazonaws.com/influxdb/influxdb_0.9.2_amd64.deb && sudo dpkg -i influxdb_0.9.2_amd64.deb
13+
- pip install tox
14+
- pip install coveralls
15+
- mkdir influxdb_install
16+
- wget https://s3.amazonaws.com/influxdb/influxdb_0.9.2_amd64.deb
17+
- dpkg -x influxdb_*_amd64.deb influxdb_install
18+
- export INFLUXDB_PYTHON_INFLUXD_PATH=$(pwd)/influxdb_install/opt/influxdb/versions/0.9.2/influxd
1619
script:
1720
- travis_wait 30 tox -e $TOX_ENV
1821
after_success:
1922
- if [ "$TOX_ENV" == "coverage" ] ; then coveralls; fi
2023
notifications:
2124
email: false
2225

26+
sudo: false
27+
2328
# Travis caching
2429
cache:
2530
directories:

0 commit comments

Comments
 (0)