mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-19 22:01:00 +00:00
Needs miniboa >= 1.0.8 for telnet test on Python 3.7. Test with older Beautiful Soup without line number support on Python 3.5. Resolve tox deprecation warning: Matching undeclared envs is deprecated. Be sure all the envs that Tox should run are declared in the tox config.
33 lines
502 B
INI
33 lines
502 B
INI
[tox]
|
|
envlist = py{35,36,37,35-oldbs4}
|
|
|
|
[base]
|
|
deps =
|
|
pyftpdlib
|
|
parameterized
|
|
pdfminer
|
|
pyopenssl
|
|
pytest-xdist
|
|
pytest-cov
|
|
miniboa >= 1.0.8
|
|
biplist
|
|
|
|
[testenv]
|
|
usedevelop = true
|
|
deps =
|
|
-rrequirements.txt
|
|
{[base]deps}
|
|
commands =
|
|
pytest {posargs:--cov=linkcheck}
|
|
setenv =
|
|
LC_ALL=en_US.utf-8
|
|
|
|
[testenv:py35-oldbs4]
|
|
# test bs4 without line number support
|
|
deps =
|
|
beautifulsoup4 < 4.8.1
|
|
requests >= 2.4
|
|
pyxdg
|
|
dnspython
|
|
future
|
|
{[base]deps}
|