Skip to content

Commit 3c86825

Browse files
removed py33 from tests, added py36
1 parent c4141bb commit 3c86825

2 files changed

Lines changed: 28 additions & 37 deletions

File tree

.travis.yml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
language: python
2-
env:
3-
- TOXENV=flake8
4-
- TOXENV=py27
5-
- TOXENV=py33
6-
- TOXENV=py34
7-
- TOXENV=py35
8-
- TOXENV=pypy
9-
- TOXENV=docs
2+
matrix:
3+
include:
4+
- python: 2.7
5+
env: TOXENV=flake8
6+
- python: 3.6
7+
env: TOXENV=flake8
8+
- python: 2.7
9+
env: TOXENV=py27
10+
- python: 3.4
11+
env: TOXENV=py34
12+
- python: 3.5
13+
env: TOXENV=py35
14+
- python: 3.6
15+
env: TOXENV=py36
16+
- python: pypy
17+
env: TOXENV=pypy
18+
- python: 2.7
19+
env: TOXENV=docs
1020
install:
1121
- pip install tox
1222
script:

tox.ini

Lines changed: 10 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
[tox]
2-
envlist=flake8,py27,py33,py34,py35,pypy,docs,coverage
2+
envlist=flake8,py27,py34,py35,py36,pypy,docs,coverage
33
skip_missing_interpreters=True
44

55
[testenv]
66
commands=
77
coverage run --branch --include="socketio/*" setup.py test
88
coverage report --show-missing
99
coverage erase
10+
deps=
11+
coverage
12+
mock
13+
basepython =
14+
py27: python2.7
15+
py34: python3.4
16+
py35: python3.5
17+
py36: python3.6
18+
pypy: pypy
1019

1120
[testenv:flake8]
1221
basepython=python
@@ -15,32 +24,6 @@ deps=
1524
commands=
1625
flake8 --exclude=".*" --ignore=E402 socketio tests
1726

18-
[testenv:py27]
19-
basepython=python2.7
20-
deps=
21-
coverage
22-
mock
23-
24-
[testenv:py33]
25-
basepython=python3.3
26-
deps=
27-
coverage
28-
29-
[testenv:py34]
30-
basepython=python3.4
31-
deps=
32-
coverage
33-
34-
[testenv:py35]
35-
basepython=python3.5
36-
deps=
37-
coverage
38-
39-
[testenv:pypy]
40-
basepython=pypy
41-
deps=
42-
coverage
43-
4427
[testenv:docs]
4528
basepython=python2.7
4629
changedir=docs
@@ -53,8 +36,6 @@ commands=
5336

5437
[testenv:coverage]
5538
basepython=python
56-
deps=
57-
coverage
5839
commands=
5940
coverage run --branch --source=socketio setup.py test
6041
coverage html

0 commit comments

Comments
 (0)