From 940cb7b1521464448b6e450ec415a62b8a536c07 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sun, 25 May 2014 19:39:20 -1000 Subject: [PATCH] Add Tox Tox is a utility that helps you test on different versions of Python. --- .gitignore | 3 +++ tox.ini | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 tox.ini diff --git a/.gitignore b/.gitignore index 93d9d2c..e313e80 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,6 @@ env/ .workon .epio-app *.pyc +.tox +*.egg-info +*.swp diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..3875f3e --- /dev/null +++ b/tox.ini @@ -0,0 +1,4 @@ +[tox] +envlist = py27,py34 +[testenv] +commands=python test_httpbin.py