From 1e2a9b2a44ea916c5f6c0653525c54fd21e663ac Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Tue, 11 Aug 2015 14:04:16 -0700 Subject: [PATCH] use tox for testing in different python environments --- README.rst | 4 ++-- tox.ini | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 tox.ini diff --git a/README.rst b/README.rst index c29cd69..34c1b68 100644 --- a/README.rst +++ b/README.rst @@ -88,7 +88,7 @@ Before contributing a pull request, make sure tests pass:: virtualenv venv . venv/bin/activate - pip install -r dev-requirements.txt - nosetests + pip install tox + tox Many thanks to all `contributors `_! diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..e2d7ac5 --- /dev/null +++ b/tox.ini @@ -0,0 +1,5 @@ +[tox] +envlist = py26, py27, py33, py34 +[testenv] +deps = -rdev-requirements.txt +commands = nosetests