From 2564c21d4ce544d030339c74d94e627bbd43f290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gra=C3=B1a?= Date: Tue, 19 Nov 2013 20:15:15 -0200 Subject: [PATCH] add a tox env for Python 3.3 --- tox.ini | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 56c992aac..7503d53bd 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, pypy, precise, trunk +envlist = py27, pypy, precise, trunk, py33 [testenv] deps = @@ -37,6 +37,20 @@ commands = pip install https://github.com/scrapy/queuelib/archive/master.zip#egg=queuelib trial scrapy +[testenv:py33] +basepython = python3.3 +deps = + Twisted>=13.2.0 + lxml>=3.2.4 + pyOpenSSL>=0.13.1 + cssselect>=0.9 + queuelib>=1.1.1 + w3lib>=1.5 + # Only required to run tests + mock>=1.0.1 +commands = + trial scrapy + [testenv:windows] commands = bin/runtests.bat []