Skip to content

Commit 3031a8a

Browse files
committed
Improve travis and tox build
This will hopefully add Python 3.3, 3.4, and 3.6 testing as well as simplify the travis management via the tox-travis tool.
1 parent 18aeb57 commit 3031a8a

2 files changed

Lines changed: 9 additions & 10 deletions

File tree

.travis.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
language: python
2-
sudo: false
3-
addons:
4-
apt:
5-
sources:
6-
- deadsnakes
7-
packages:
8-
- python3.5
92
python:
10-
- "2.7"
3+
- "2.7"
4+
- "3.3"
5+
- "3.4"
6+
- "3.5"
7+
- "3.6"
8+
- "pypy"
119
install:
12-
- pip install tox
10+
- pip install tox-travis
1311
script:
1412
- tox
13+
sudo: false

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,35,py}, docs, style
2+
envlist = py{27,33,34,35,36,py}, docs, style
33

44

55
[testenv]

0 commit comments

Comments
 (0)