blob: 7f35ff23929ee7e5db81d0b97cfaf8de97dac155 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
language: python
python:
- "3.5" # Python 3.5 still needs to be installed on Travis-CI
env:
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=pypy26
- TOX_ENV=pep8
services:
- docker
sudo: required # Required to enable Docker service
install:
- pip install tox coveralls
- bash tests/integrated/common/install_docker_test_pkg_for_travis.sh
script:
- NOSE_VERBOSE=0 tox -e $TOX_ENV
after_success:
- coveralls
|