Skip to content

Commit

Permalink
support testing for python 3.3 and 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
keenhenry committed Aug 10, 2014
1 parent f00794a commit df89be6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py26,py27
envlist = py26,py27,py33,py34

[testenv]
commands=python -E setup.py test
Expand All @@ -20,3 +20,13 @@ basepython=python2.7
deps=
requests
mock

[testenv:py33]
basepython=python3.3
deps=
requests

[testenv:py34]
basepython=python3.4
deps=
requests

0 comments on commit df89be6

Please sign in to comment.