File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1+ Update a few links in code comments.
Original file line number Diff line number Diff line change 99You can use this hooks just as you would use normal pytest hooks, but some care
1010must 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
1515from __future__ import annotations
Original file line number Diff line number Diff 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]
You can’t perform that action at this time.
0 commit comments