Skip to content

Commit 4677580

Browse files
authored
Merge pull request pytest-dev#10339 from Moisan/doc_broken_links
2 parents 2be1b8f + 06007de commit 4677580

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ changes you want to review and merge. Pull requests are stored on
223223
Once you send a pull request, we can discuss its potential modifications and
224224
even add more commits to it later on. There's an excellent tutorial on how Pull
225225
Requests work in the
226-
`GitHub Help Center <https://help.github.com/articles/using-pull-requests/>`_.
226+
`GitHub Help Center <https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests>`_.
227227

228228
Here is a simple overview, with pytest-specific bits:
229229

doc/en/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6229,7 +6229,7 @@ Bug Fixes
62296229
Thanks :user:`adborden` for the report and :user:`nicoddemus` for the PR.
62306230

62316231
* Clean up unittest TestCase objects after tests are complete (:issue:`1649`).
6232-
Thanks :user:`d_b_w` for the report and PR.
6232+
Thanks :user:`d-b-w` for the report and PR.
62336233

62346234

62356235
3.0.3 (2016-09-28)
@@ -6244,7 +6244,7 @@ Bug Fixes
62446244
Thanks :user:`nicoddemus` for the PR.
62456245

62466246
* Fix pkg_resources import error in Jython projects (:issue:`1853`).
6247-
Thanks :user:`raquel-ucl` for the PR.
6247+
Thanks :user:`raquelalegre` for the PR.
62486248

62496249
* Got rid of ``AttributeError: 'Module' object has no attribute '_obj'`` exception
62506250
in Python 3 (:issue:`1944`).

doc/en/example/nonpython.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Working with non-python tests
99
A basic example for specifying tests in Yaml files
1010
--------------------------------------------------------------
1111

12-
.. _`pytest-yamlwsgi`: http://bitbucket.org/aafshar/pytest-yamlwsgi/src/tip/pytest_yamlwsgi.py
12+
.. _`pytest-yamlwsgi`: https://pypi.org/project/pytest-yamlwsgi/
1313

1414
Here is an example ``conftest.py`` (extracted from Ali Afshar's special purpose `pytest-yamlwsgi`_ plugin). This ``conftest.py`` will collect ``test*.yaml`` files and will execute the yaml-formatted content as custom tests:
1515

src/_pytest/recwarn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
def recwarn() -> Generator["WarningsRecorder", None, None]:
3131
"""Return a :class:`WarningsRecorder` instance that records all warnings emitted by test functions.
3232
33-
See https://docs.python.org/library/how-to/capture-warnings.html for information
33+
See https://docs.pytest.org/en/latest/how-to/capture-warnings.html for information
3434
on warning categories.
3535
"""
3636
wrec = WarningsRecorder(_ispytest=True)

0 commit comments

Comments
 (0)