diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..5d43564 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - 2.6 + - 2.7 + - pypy + - 3.2 + - 3.3 +install: + - "pip install --use-mirrors nose==1.2.1" + - "python setup.py develop" +script: nosetests diff --git a/tox.ini b/tox.ini index 98f2870..f685d42 100644 --- a/tox.ini +++ b/tox.ini @@ -2,5 +2,5 @@ envlist=py26,py27,py32 [testenv] -deps=nose +deps=nose==1.2.1 commands=nosetests