mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
Because the GeoIP database now requires registration to download the result of the lookup using geoip-database is not going to change.
44 lines
699 B
INI
44 lines
699 B
INI
[tox]
|
|
envlist = py35, py36, py37, py38, oldbs4
|
|
|
|
[base]
|
|
deps =
|
|
pyftpdlib
|
|
parameterized
|
|
pdfminer
|
|
pyopenssl
|
|
pytest-xdist
|
|
pytest-cov
|
|
miniboa >= 1.0.8
|
|
biplist
|
|
GeoIP
|
|
|
|
[testenv]
|
|
usedevelop = true
|
|
deps =
|
|
-rrequirements.txt
|
|
{[base]deps}
|
|
commands =
|
|
pytest {posargs:--cov=linkcheck}
|
|
setenv =
|
|
LC_ALL=en_US.utf-8
|
|
|
|
[testenv:oldbs4]
|
|
# test bs4 without line number support
|
|
basepython = python3
|
|
deps =
|
|
beautifulsoup4 < 4.8.1
|
|
requests >= 2.4
|
|
pyxdg
|
|
dnspython
|
|
{[base]deps}
|
|
|
|
[testenv:flake8]
|
|
deps = flake8
|
|
skip_install = true
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:check-manifest]
|
|
deps = check-manifest
|
|
skip_install = true
|
|
commands = check-manifest
|