diff --git a/.gitignore b/.gitignore index 2c87000..803d9b8 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ *.egg *.pyc dist +.tox \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index b03b6c2..94aef04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: python python: - "2.7" + - "3.3" install: - "pip install -r requirements.txt --use-mirrors" - "pip install coverage" diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..ba0f3ce --- /dev/null +++ b/tox.ini @@ -0,0 +1,7 @@ +[tox] +envlist = py27,py33 +[testenv] +deps= + pytest + Flask-Testing +commands=py.test