Skip to content

Commit d2f0293

Browse files
committed
Fix or remove URLs that are causing docs tests to fail
1 parent 6525fdd commit d2f0293

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

AUTHORS.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
Authors
33
=======
44

5-
* Marc Schlaich - http://www.schlamar.org
6-
* Rick van Hattem - http://wol.ph
5+
* Marc Schlaich
6+
* Rick van Hattem - https://w.wol.ph
77
* Buck Evan - https://github.com/bukzor
8-
* Eric Larson - http://larsoner.com
9-
* Marc Abramowitz - http://marc-abramowitz.com
8+
* Eric Larson - https://larsoner.com
9+
* Marc Abramowitz
1010
* Thomas Kluyver - https://github.com/takluyver
11-
* Guillaume Ayoub - http://www.yabz.fr
11+
* Guillaume Ayoub - https://www.yabz.fr
1212
* Federico Ceratto - http://firelet.net
13-
* Josh Kalderimis - http://blog.cookiestack.com
13+
* Josh Kalderimis
1414
* Ionel Cristian Mărieș - https://blog.ionelmc.ro
1515
* Christian Ledermann - https://github.com/cleder
1616
* Alec Nikolas Reiter - https://github.com/justanr

CHANGELOG.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Changelog
4545
Contributed by Andre Brisco in `#543 <https://github.com/pytest-dev/pytest-cov/pull/543>`_
4646
and Colin O'Dell in `#525 <https://github.com/pytest-dev/pytest-cov/pull/525>`_.
4747
* Added support for LCOV output format via `--cov-report=lcov`. Only works with coverage 6.3+.
48-
Contributed by Christian Fetzer in `#536 <https://github.com/pytest-dev/pytest-cov/issues/536>`_.
48+
Contributed by Christian Fetzer in `#536 <https://github.com/pytest-dev/pytest-cov/pull/536>`_.
4949
* Modernized pytest hook implementation.
5050
Contributed by Bruno Oliveira in `#549 <https://github.com/pytest-dev/pytest-cov/pull/549>`_
5151
and Ronny Pfannschmidt in `#550 <https://github.com/pytest-dev/pytest-cov/pull/550>`_.
@@ -116,7 +116,7 @@ Changelog
116116
* Removed the empty `console_scripts` entrypoint that confused some Gentoo build script.
117117
I didn't ask why it was so broken cause I didn't want to ruin my day.
118118
Contributed by Michał Górny in `#434 <https://github.com/pytest-dev/pytest-cov/pull/434>`_.
119-
* Fixed the missing `coverage context <https://coverage.readthedocs.io/en/stable/contexts.html>`_
119+
* Fixed the missing `coverage context <https://coverage.readthedocs.io/en/latest/contexts.html>`_
120120
when using subprocesses.
121121
Contributed by Bernát Gábor in `#443 <https://github.com/pytest-dev/pytest-cov/pull/443>`_.
122122
* Updated the config section in the docs.
@@ -145,7 +145,7 @@ Changelog
145145
* Made pytest startup faster when plugin not active by lazy-importing.
146146
Contributed by Anders Hovmöller in `#339 <https://github.com/pytest-dev/pytest-cov/pull/339>`_.
147147
* Various CI improvements.
148-
Contributed by Daniel Hahler in `#363 <https://github.com/pytest-dev/pytest-cov/pull/>`_ and
148+
Contributed by Daniel Hahler in `#363 <https://github.com/pytest-dev/pytest-cov/pull/363>`_ and
149149
`#364 <https://github.com/pytest-dev/pytest-cov/pull/364>`_.
150150
* Various Python support updates (drop EOL 3.4, test against 3.8 final).
151151
Contributed by Hugo van Kemenade in

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Would produce a report like::
108108
Documentation
109109
=============
110110

111-
http://pytest-cov.rtfd.org/
111+
https://pytest-cov.readthedocs.io/en/latest/
112112

113113

114114

docs/contexts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Coverage.py 5.0 can record separate coverage data for `different contexts`_ duri
66
one run of a test suite. Pytest-cov can use this feature to record coverage
77
data for each test individually, with the ``--cov-context=test`` option.
88

9-
.. _different contexts: https://coverage.readthedocs.io/en/stable/contexts.html
9+
.. _different contexts: https://coverage.readthedocs.io/en/latest/contexts.html
1010

1111
The context name recorded in the coverage.py database is the pytest test id,
1212
and the phase of execution, one of "setup", "run", or "teardown". These two

docs/plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The current way of dealing with this problem is using the append feature and man
1010

1111
COV_CORE_SOURCE=src COV_CORE_CONFIG=.coveragerc COV_CORE_DATAFILE=.coverage.eager pytest --cov=src --cov-append
1212

13-
Alternatively you can have this in ``tox.ini`` (if you're using `Tox <https://tox.readthedocs.io/en/latest/>`_ of course)::
13+
Alternatively you can have this in ``tox.ini`` (if you're using `Tox <https://tox.wiki/en/latest/>`_ of course)::
1414

1515
[testenv]
1616
setenv =

docs/tox.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Tox
33
===
44

5-
When using `tox <https://tox.readthedocs.io/>`_ you can have ultra-compact configuration - you can have all of it in
5+
When using `tox <https://tox.wiki/en/stable/>`_ you can have ultra-compact configuration - you can have all of it in
66
``tox.ini``::
77

88
[tox]

0 commit comments

Comments
 (0)