diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2020-05-07 21:19:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 21:19:46 -0400 |
commit | a6052658fbad43b7636f97685cace2adc736b7fa (patch) | |
tree | f64ad3778973566e5c20f7dbe840c263863f80c1 /tox.ini | |
parent | 375db8ce0764864db6c7f76268592bc726ace33c (diff) | |
download | python-markdown-a6052658fbad43b7636f97685cace2adc736b7fa.tar.gz |
Add checklinks tox env and shell script. (#955)
Also clean up dead links.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py35, py36, py37, py38, pypy3, flake8, checkspelling, pep517check +envlist = py35, py36, py37, py38, pypy3, flake8, checkspelling, pep517check, checklinks isolated_build = True min_verison = 1.9 @@ -20,6 +20,11 @@ deps = mkdocs_nature commands = {toxinidir}/checkspelling.sh +[testenv:checklinks] +whitelist_externals = markdown-link-check +deps = +commands = {toxinidir}/checklinks.sh + [testenv:pep517check] deps = pep517 commands = python -m pep517.check {toxinidir} |