From be2f7e12ac8bffa5bb6a03a85dd7b8e0a8bc390f Mon Sep 17 00:00:00 2001 From: Nicolas Delaby Date: Mon, 19 Dec 2016 15:09:54 +0100 Subject: [PATCH] add a tox file for the project --- .gitignore | 1 + tox.ini | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 tox.ini diff --git a/.gitignore b/.gitignore index d4939536..9dbdc2de 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ __pycache__ .DS_Store htmlcov/ .cache/ +.tox/ diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..33bee45e --- /dev/null +++ b/tox.ini @@ -0,0 +1,5 @@ +[tox] +envlist=py27,py33,py34,py35,pypy +[testenv] +deps=-rrequirements.txt +commands=pytest tests {posargs}