Codebase list dnspython / upstream/1.16.0+git20191031.0d018c3 tox.ini
upstream/1.16.0+git20191031.0d018c3

Tree @upstream/1.16.0+git20191031.0d018c3 (Download .tar.gz)

tox.ini @upstream/1.16.0+git20191031.0d018c3raw · history · blame

[tox]
envlist =
    py35,
    py36,
    py37,
    flake8,
    pylint,
    mypy,
    coverage

[testenv]

commands=
    python setup.py test

deps=

[testenv:flake8]
commands =
    pip install flake8
    flake8 dns

[testenv:pylint]
commands =
    pip install pylint
    pylint dns

[testenv:mypy]
commands =
    pip install mypy
    mypy examples tests

[testenv:coverage]
basepython = python2

deps =
    coverage

commands =
    python setup.py install
    coverage run --rcfile=.coverage.ini setup.py test
    coverage report

[pep8]
show-pep8 = True
show-source = True