diff options
Diffstat (limited to 'test/vcpe')
-rw-r--r-- | test/vcpe/tox.ini | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/vcpe/tox.ini b/test/vcpe/tox.ini new file mode 100644 index 000000000..25785a67b --- /dev/null +++ b/test/vcpe/tox.ini @@ -0,0 +1,15 @@ +# 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 = pytest + +[testenv] +deps = pytest + +[testenv:pytest] +basepython = python2 +commands = + pytest |