mirror of
https://github.com/mkdocs/mkdocs.git
synced 2026-03-27 09:58:31 +07:00
Limit requests to 2.9 for LinkChecker
It incorrectly inspects the version of 2.10+ and thinks it is lower than 2.2. See: https://github.com/wummel/linkchecker/issues/649
This commit is contained in:
4
tox.ini
4
tox.ini
@@ -26,7 +26,9 @@ commands=mdl README.md CONTRIBUTING.md docs/
|
|||||||
[testenv:linkchecker]
|
[testenv:linkchecker]
|
||||||
basepython = python2.7
|
basepython = python2.7
|
||||||
passenv=*
|
passenv=*
|
||||||
deps=LinkChecker
|
deps=
|
||||||
|
requests<=2.9.0
|
||||||
|
LinkChecker
|
||||||
commands=
|
commands=
|
||||||
{envpython} -m mkdocs.tests.integration --output={envtmpdir}/builds
|
{envpython} -m mkdocs.tests.integration --output={envtmpdir}/builds
|
||||||
linkchecker {envtmpdir}/builds/
|
linkchecker {envtmpdir}/builds/
|
||||||
|
|||||||
Reference in New Issue
Block a user