From c1e43f8f05cd7a81794505cdc35da16dad80b948 Mon Sep 17 00:00:00 2001 From: Jwpe Date: Thu, 27 Feb 2014 23:52:17 -0500 Subject: [PATCH] Added a tox.ini file for multi-version testing. Updated travis.yml to include python 3.3. --- .gitignore | 1 + .travis.yml | 1 + tox.ini | 7 +++++++ 3 files changed, 9 insertions(+) create mode 100644 tox.ini 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