Skip to content

Commit 7908081

Browse files
Adding testing support for Python 3.3, 3.4 and 3.5
1 parent 814763b commit 7908081

3 files changed

Lines changed: 24 additions & 3 deletions

File tree

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ python:
55
- '2.6'
66
- '2.7'
77
- '3.2'
8+
- '3.3'
9+
- '3.4'
10+
- '3.5'
811
install:
912
- python setup.py install
1013
script:

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,9 @@ Tests
483483
pyenv install 2.6.9
484484
pyenv install 2.7.8
485485
pyenv install 3.2.6
486+
pyenv install 3.3.6
487+
pyenv install 3.4.3
488+
pyenv install 3.5.0
486489
487490
**Run the tests:**
488491

@@ -491,7 +494,7 @@ Tests
491494
virtualenv venv
492495
source venv/bin/activate #or . ./activate.sh
493496
python setup.py install
494-
pyenv local 3.2.6 2.7.8 2.6.9
497+
pyenv local 3.5.0 3.4.3 3.3.6 3.2.6 2.7.8 2.6.9
495498
pyenv rehash
496499
tox
497500

tox.ini

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py26, py27, py32
7+
envlist = py26, py27, py32, py33, py34, py35
88

99
[testenv]
1010
commands = {envbindir}/python -m unittest discover -v []
@@ -23,4 +23,19 @@ basepython = python2.7
2323
[testenv:py32]
2424
commands = {envbindir}/python -m unittest discover -v []
2525
deps =
26-
basepython = python3.2
26+
basepython = python3.2
27+
28+
[testenv:py33]
29+
commands = {envbindir}/python -m unittest discover -v []
30+
deps =
31+
basepython = python3.3
32+
33+
[testenv:py34]
34+
commands = {envbindir}/python -m unittest discover -v []
35+
deps =
36+
basepython = python3.4
37+
38+
[testenv:py35]
39+
commands = {envbindir}/python -m unittest discover -v []
40+
deps =
41+
basepython = python3.5

0 commit comments

Comments
 (0)