summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-12-26 20:52:33 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-12-26 20:52:33 +0000
commit754fcc98df0d379a92c7b9741505c257e09a532f (patch)
treeb332b5ce21a5842eea21fa68a627c859d12234d2 /tox.ini
parent87a736d53aaf2f1c7af43945008e2536d743b7b0 (diff)
downloadpyfilesystem-git-754fcc98df0d379a92c7b9741505c257e09a532f.tar.gz
First stab at a Python3 port
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini22
1 files changed, 18 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 0f5231f..afe5da9 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,20 +1,34 @@
[tox]
-envlist = py25,py26,py27
+envlist = py25,py26,py27,py32
[testenv]
-deps = dexml
+deps = distribute
+ six
+ dexml
paramiko
boto
nose
mako
pyftpdlib
-commands = nosetests -v \
+changedir=.tox
+commands = nosetests fs.tests -v \
[]
[testenv:py25]
-deps = dexml
+deps = distribute
+ six
+ dexml
paramiko
boto
nose
mako
pyftpdlib
simplejson
+
+[testenv:py32]
+commands = nosetests fs.tests -v \
+ []
+deps = distribute
+ six
+ dexml
+ nose
+