gitschwifty/pywit

View on GitHub
tox.ini

Summary

Maintainability
Test Coverage
# 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 = py36

[testenv]
deps =
    -rci-requirements.txt
    pytest
commands =
    pytest

[testenv:py36]
deps =
    -rci-requirements.txt
    pytest
    coverage
commands =
    coverage run --parallel-mode -m pytest
    coverage combine
    coverage report -m
    coverage xml