From d4fa0e1833b6f2b2d9ddbc319daabe6d5a701732 Mon Sep 17 00:00:00 2001 From: Matthew Turk Date: Mon, 13 Apr 2020 14:31:29 -0500 Subject: [PATCH] Adding a tox ini file --- tox.ini | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000000..ab42d991794 --- /dev/null +++ b/tox.ini @@ -0,0 +1,17 @@ +# tox (https://tox.readthedocs.io/) is a tool for running tests +# in multiple virtualenvs. This configuration file will run the +# test suite on all supported python versions. To use it, "pip install tox" +# and then run "tox" from this directory. + +[tox] +envlist = py35, py36, py37, py38 + +[testenv] +deps = + -rtests/test_minimal_requirements.txt + cython +setenv = + MINIMAL = 1 + +commands = + nosetests -c nose_unit.cfg