summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2012-11-15 18:56:50 -0800
committerKenneth Reitz <me@kennethreitz.com>2012-11-15 18:56:50 -0800
commit9f38efe4133f6f4c4a2e58b5867f3f7883d119c8 (patch)
tree9dea315df1aff6c934114b6a31a676d05f3c9dc3 /tox.ini
parent5d98239a7e988a1a16261c6cb7073d618b92cfc7 (diff)
parent15435047c668aa8e1fb5ffc1a8db30e5b944d5fd (diff)
downloadtablib-9f38efe4133f6f4c4a2e58b5867f3f7883d119c8.tar.gz
Merge pull request #68 from msabramo/python3
Improve Python 3 compatibility
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini15
1 files changed, 15 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..83c5a8e
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,15 @@
+# Tox (http://tox.testrun.org/) is a tool for running tests
+# in multiple virtualenvs. This configuration file will run the
+# test suite on all supported python versions. To use it, "pip install tox"
+# and then run "tox" from this directory.
+
+[tox]
+envlist = py26, py27, py32, pypy
+
+[testenv]
+commands = python setup.py test
+deps =
+ pytest
+ PyYAML
+ xlrd
+ omnijson