From 763244dad53404a4ec126beca92d3f30d1325af2 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 18 Jan 2013 19:46:58 -0500 Subject: [PATCH] tox.ini: Test on Python 3.3 as well as 2.7 and 3.2 I just copied the 3.2 environment for 3.3. They should be similar, but it's possible some packages have extra issues on 3.3. --- tox.ini | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index bc6578ac..6d1a134a 100644 --- a/tox.ini +++ b/tox.ini @@ -31,7 +31,7 @@ [tox] -envlist = py27,py32 +envlist = py27,py32,py33 [testenv] commands = @@ -61,3 +61,15 @@ deps = # {distshare}/smartypants-1.6.0.3.zip # {distshare}/typogrify-2.0.0.zip # {distshare}/webassets-0.8.dev.zip + +[testenv:py33] +deps = + nose + unittest2py3k + mock + Markdown + BeautifulSoup4 + feedgenerator +# {distshare}/smartypants-1.6.0.3.zip +# {distshare}/typogrify-2.0.0.zip +# {distshare}/webassets-0.8.dev.zip