summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2012-12-20 15:17:35 +0000
committerMarius Gedminas <marius@gedmin.as>2012-12-20 15:17:35 +0000
commitf1a0cb3a4d1e63ad6ba1577093245033fc16b870 (patch)
tree61c31d1f8656391674b3061be31d588d2b11626c /tox.ini
parent8bc18f6c29c1d7e180c2fc6fb25069a5b45b8528 (diff)
downloadzope-pagetemplate-f1a0cb3a4d1e63ad6ba1577093245033fc16b870.tar.gz
Support setup.py test. Add a tox.ini.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini11
1 files changed, 11 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..ac4fad3
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,11 @@
+[tox]
+envlist =
+ # py32 needs a py3k-compatible zope.proxy at the very least
+ py26,py27
+
+[testenv]
+deps =
+ zope.pagetemplate[test]
+commands =
+ python setup.py test -q
+