Adding Travis CI configuration
@@ -0,0 +1,14 @@
+# Configuration for Travis CI
+# !!! When making changes, make sure to also edit tox.ini !!!
+
+language: python
+python:
+ - "2.5"
+ - "2.6"
+ - "2.7"
+# command to install dependencies
+install:
+ - pip install -r test_requirements.txt --use-mirrors
+# command to run tests
+script:
+ - python setup.py test -q
@@ -0,0 +1,3 @@
+# Requirements used for testing
+mock >= 0.5.0
+meld3 >= 0.6.5
@@ -1,3 +1,5 @@
+# !!! When making changes, make sure to also edit .travis.yml !!!
[tox]
envlist =
py25,py26,py27