Skip to content

Commit 0226915

Browse files
committed
Check with python 3.6 on travis
1 parent aef21fb commit 0226915

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

‎.travis.yml‎

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
language: python
22
sudo: false
3-
python:
4-
- 3.5 # otherwise we can't run tox 3.5 tests
5-
env:
6-
matrix:
7-
- TOXENV=py35
8-
- TOXENV=py26
9-
- TOXENV=py27
10-
- TOXENV=py33
11-
- TOXENV=py34
12-
- TOXENV=pypy
13-
- TOXENV=pypy3
14-
- TOXENV=flake8
153
matrix:
4+
include:
5+
- python: 3.6
6+
env: TOXENV=py36
7+
- python: 2.6
8+
env: TOXENV=py26
9+
- python: 2.7
10+
env: TOXENV=py27
11+
- python: 3.3
12+
env: TOXENV=py33
13+
- python: 3.4
14+
env: TOXENV=py34
15+
- python: 3.5
16+
env: TOXENV=py35
17+
- env: TOXENV=pypy
18+
- env: TOXENV=flake8
1619
allow_failures:
1720
- env: TOXENV=pypy3
1821
addons:

‎tox.ini‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, py35, pypy, pypy3, flake8
2+
envlist = py26, py27, py33, py34, py35, py36, pypy, pypy3, flake8
33

44
[testenv]
55
# pandoc does not like it when HOME is missing...

0 commit comments

Comments
 (0)