-
Notifications
You must be signed in to change notification settings - Fork 12
/
.travis.yml
32 lines (32 loc) · 903 Bytes
/
.travis.yml
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
26
27
28
29
30
31
32
language: python
python:
- '3.6'
- '3.5'
- '2.7'
cache:
directories:
- $HOME/.wheelhouse/
env:
global:
- TRAVIS_CACHE=$HOME/.travis_cache/
matrix:
include:
- python: "2.7"
env:
- TOX_ENV=py27
- python: "3.5"
env:
- TOX_ENV=py35
- python: "3.6"
env:
- TOX_ENV=py36
- python: "2.7"
env:
- TOX_ENV=coverage
install:
- pip install --upgrade pip
- pip install -r test_requirements.txt
script:
- tox -e $TOX_ENV
after_success:
coveralls