linkchecker/tox.ini
Marius Gedminas ccc0ee0464 Clean up travis and tox.ini
I want the Python 3.5 travis job to run just tox -e py35, without the
oldbs4 job, and without an explicit TOXENV setting that is awkward to
insert in the .travis.yml (also, it reorders the jobs putting 3.5 below
3.8 which annoys me).

I think I found a way of doing that by renaming py35-oldbs4 to oldbs4.
2020-03-30 14:46:44 +03:00

34 lines
526 B
INI

[tox]
envlist = py35, py36, py37, py38, 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:oldbs4]
# test bs4 without line number support
basepython = python3
deps =
beautifulsoup4 < 4.8.1
requests >= 2.4
pyxdg
dnspython
future
{[base]deps}