mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-24 09:50:23 +00:00
33 lines
525 B
INI
33 lines
525 B
INI
[tox]
|
|
envlist = py37, py38, py39, py310
|
|
|
|
[base]
|
|
deps =
|
|
pyftpdlib
|
|
parameterized
|
|
pdfminer.six
|
|
pyopenssl
|
|
pytest-xdist
|
|
pytest-cov
|
|
miniboa >= 1.0.8
|
|
GeoIP
|
|
|
|
[testenv]
|
|
usedevelop = true
|
|
deps =
|
|
-rrequirements.txt
|
|
{[base]deps}
|
|
commands =
|
|
pytest {posargs:--cov=linkcheck}
|
|
setenv =
|
|
LC_ALL=en_US.utf-8
|
|
|
|
[testenv:flake8]
|
|
deps = flake8
|
|
skip_install = true
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:yamllint]
|
|
deps = yamllint
|
|
skip_install = true
|
|
commands = yamllint {posargs} -s .github/workflows/
|