Skip to content

Commit 54347eb

Browse files
committed
Run tests against Python 3.7, rather than nightly
1 parent b17dde4 commit 54347eb

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.travis.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
sudo: false
22
language: python
3-
python:
4-
- "2.7"
5-
- "3.5"
6-
- "3.6"
7-
- "nightly"
3+
matrix:
4+
include:
5+
- python: 2.7
6+
dist: trusty
7+
sudo: false
8+
- python: 3.5
9+
dist: trusty
10+
sudo: false
11+
- python: 3.6
12+
dist: trusty
13+
sudo: false
14+
- python: 3.7
15+
dist: xenial
16+
sudo: true
817
install: pip install tox-travis
918
script: tox
1019
notifications:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py35, py36
2+
envlist = py27, py35, py36, py37
33
skipsdist=True
44

55
[testenv]

0 commit comments

Comments
 (0)