---
.gitignore | 1 +
tox.ini | 10 ++++++++++
2 files changed, 11 insertions(+)
create mode 100644 tox.ini
diff --git a/.gitignore b/.gitignore
index a28e63c..19ee546 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ MANIFEST
*.#*#
*.pyc
tags
+.tox
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..e8c33f1
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,10 @@
+[tox]
+envlist = py26,py27,py34
+
+[testenv]
+deps=
+ lxml
+ nose
+commands=
+ python sanitytest.py
+ nosetests
--
2.1.0