From 2455ba6e62751aa85c83b79876cee559f578acd4 Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Mon, 22 May 2017 12:29:53 -0400 Subject: [PATCH] Test all Python versions using tox. --- .gitignore | 3 +++ tox.ini | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 tox.ini diff --git a/.gitignore b/.gitignore index 1d2abaa..242a34f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ *.pyc build src/*.egg-info + +.eggs +.tox diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..459ac1c --- /dev/null +++ b/tox.ini @@ -0,0 +1,9 @@ +[tox] +envlist = py27,py35,pypy + +[testenv] +deps = + .[test] +commands = + python setup.py test -q +