Codebase list python-flask-httpauth / 917e28f6-201d-42c4-acb0-90b4fd4a01b2/upstream tox.ini
917e28f6-201d-42c4-acb0-90b4fd4a01b2/upstream

Tree @917e28f6-201d-42c4-acb0-90b4fd4a01b2/upstream (Download .tar.gz)

tox.ini @917e28f6-201d-42c4-acb0-90b4fd4a01b2/upstreamraw · history · blame

[tox]
envlist=flake8,py36,py37,py38,py39,pypy3,docs,coverage
skip_missing_interpreters=True

[gh-actions]
python =
    2.7: py27
    3.6: py36
    3.7: py37
    3.8: py38
    3.9: py39
    pypy2: pypy2
    pypy3: pypy3

[testenv]
commands=
    coverage run --branch --include=flask_httpauth.py setup.py test
    coverage report --show-missing
    coverage xml -o coverage.xml
    coverage erase
deps=
    coverage

[testenv:flake8]
deps=
    flake8
commands=
    flake8 --exclude=".*" --ignore=E402 flask_httpauth.py tests examples

[testenv:docs]
changedir=docs
deps=
    sphinx
whitelist_externals=
    make
commands=
    make html