2020-02-17 17:02:52 +00:00
|
|
|
# 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]
|
2020-04-06 19:05:57 +00:00
|
|
|
envlist = py36,py37,py38
|
2020-02-17 17:02:52 +00:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps =
|
2020-04-06 19:05:57 +00:00
|
|
|
pytest
|
|
|
|
coverage
|
2020-02-17 17:02:52 +00:00
|
|
|
commands =
|
2020-04-06 19:05:57 +00:00
|
|
|
pip install -e .
|
|
|
|
coverage run -m pytest
|