Skip to content

Commit d1733af

Browse files
Update a few links (#1261)
Co-authored-by: Ronny Pfannschmidt <[email protected]>
1 parent 0c98447 commit d1733af

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

changelog/1261.trivial.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update a few links in code comments.

src/xdist/newhooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
You can use this hooks just as you would use normal pytest hooks, but some care
1010
must be taken in plugins in case ``xdist`` is not installed. Please see:
1111
12-
http://pytest.org/en/latest/writing_plugins.html#optionally-using-hooks-from-3rd-party-plugins
12+
https://pytest.org/en/latest/how-to/writing_hook_functions.html#optionally-using-hooks-from-3rd-party-plugins
1313
"""
1414

1515
from __future__ import annotations

src/xdist/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def cpu_count() -> int:
4040

4141
except ImportError:
4242
if os.environ.get("TRAVIS") == "true":
43-
# workaround https://bitbucket.org/pypy/pypy/issues/2375
43+
# workaround https://github.com/pypy/pypy/issues/2375
4444
return 2
4545
try:
4646
from os import cpu_count # type: ignore[assignment]

0 commit comments

Comments
 (0)