From 8ec7ff09c7e06fea79c456838daae483b27ba67b Mon Sep 17 00:00:00 2001 From: Peter Teichman Date: Wed, 19 Sep 2012 18:31:49 -0400 Subject: [PATCH] Add a tox configuration This will be used for release builds; the Travis configuration will verify things commit-to-commit. --- .gitignore | 1 + tox.ini | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 tox.ini diff --git a/.gitignore b/.gitignore index 4d388fc..9454969 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.egg *.egg-info .coverage +.tox dist/ docs/_build tests.* diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..1db283b --- /dev/null +++ b/tox.ini @@ -0,0 +1,10 @@ +[tox] +envlist = py26, py27 + +[testenv] +deps= + flake8==1.4 + +commands= + flake8 park.py test_park.py + python setup.py test