diff options
Diffstat (limited to 'python-packages/contract_artifacts/tox.ini')
-rw-r--r-- | python-packages/contract_artifacts/tox.ini | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/python-packages/contract_artifacts/tox.ini b/python-packages/contract_artifacts/tox.ini new file mode 100644 index 000000000..aa1037ed7 --- /dev/null +++ b/python-packages/contract_artifacts/tox.ini @@ -0,0 +1,12 @@ +# 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 = py37 + +[testenv] +commands = + pip install -e .[dev] + python setup.py lint |