diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-09-24 08:15:35 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-09-24 08:15:35 -0400 |
commit | 3e8351abd1e946939aef19867b1562bd7d1a6c54 (patch) | |
tree | 5e48549c28f5ab2820128dc497fc7d4f49e8d1a4 | |
parent | 252cf9315ee1cdabab7b35bf8e868e7ac73b0429 (diff) | |
download | python-coveragepy-git-3e8351abd1e946939aef19867b1562bd7d1a6c54.tar.gz |
Use linkcheck on docs, and fix some broken links
-rw-r--r-- | doc/changes.rst | 3 | ||||
-rw-r--r-- | doc/contributing.rst | 2 | ||||
-rw-r--r-- | tox.ini | 4 |
3 files changed, 4 insertions, 5 deletions
diff --git a/doc/changes.rst b/doc/changes.rst index 6bb2cb26..6cd3ab61 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -1137,10 +1137,9 @@ Version 3.1 --- 2009-10-04 - Added a ``coverage debug`` command for getting diagnostic information about the coverage.py installation. -- Source code can now be read from eggs. Thanks, `Ross Lawley`_. Fixes +- Source code can now be read from eggs. Thanks, Ross Lawley. Fixes `issue 25`_. -.. _Ross Lawley: http://agileweb.org/ .. _issue 25: http://bitbucket.org/ned/coveragepy/issue/25 .. _issue 12: http://bitbucket.org/ned/coveragepy/issue/12 .. _issue 13: http://bitbucket.org/ned/coveragepy/issue/13 diff --git a/doc/contributing.rst b/doc/contributing.rst index dc50202c..f631dd25 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -168,5 +168,5 @@ probably fine. A pull request on Bitbucket is great, but a simple diff or patch is great too. -.. _Mercurial: http://mercurial.selenic.com/ +.. _Mercurial: https://www.mercurial-scm.org/ .. _tox: http://tox.testrun.org/ @@ -74,8 +74,8 @@ basepython = pypy3-5.2 # return. deps = -rdoc/requirements.pip commands = - sphinx-build -aEnq doc doc/_build/html - sphinx-build -aEnQW doc doc/_build/html + sphinx-build -b html -b linkcheck -aEnq doc doc/_build/html + sphinx-build -b html -b linkcheck -aEnQW doc doc/_build/html rst2html.py --strict CHANGES.rst doc/_build/trash rst2html.py --strict README.rst doc/_build/trash |