From b7a6e92274bb0d146c4637a78128bc771f2612e9 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Mon, 29 Feb 2016 22:57:37 -0500 Subject: tox.ini: only specify py3 not specific py34 This makes tox work on xenial where python3 is python3.5 and on older (trusty) where python3 is python3.4. --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 849481f0..b72df0c9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py34 +envlist = py27,py3 recreate = True [testenv] @@ -7,6 +7,9 @@ commands = python -m nose {posargs:tests} deps = -r{toxinidir}/test-requirements.txt -r{toxinidir}/requirements.txt +[testenv:py3] +basepython = python3 + # https://github.com/gabrielfalcao/HTTPretty/issues/223 setenv = LC_ALL = en_US.utf-8 -- cgit v1.2.3