From 939293da14f3b3f2f8a9097801a8813d8c08fb4e Mon Sep 17 00:00:00 2001 From: Nick Coghlan <@ncoghlan> Date: Tue, 12 Jan 2016 18:51:30 +1000 Subject: [PATCH] Tox support on dev branch --- tox.ini | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..668a89d --- /dev/null +++ b/tox.ini @@ -0,0 +1,11 @@ +[tox] +envlist = py27, pypy, py34, py35, pypy3 + +[testenv] +commands = {envpython} test_contextlib2.py + +[testenv:py27] +deps = unittest2 + +[testenv:pypy] +deps = unittest2