We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3afbd commit 199e029Copy full SHA for 199e029
Lib/test/test_importlib/metadata/test_zip.py
@@ -3,6 +3,8 @@
3
import sys
4
import unittest
5
6
+from test.support import warnings_helper
7
+
8
from importlib.metadata import (
9
FastPath,
10
PackageNotFoundError,
@@ -50,6 +52,7 @@ def test_one_distribution(self):
50
52
dists = list(distributions(path=sys.path[:1]))
51
53
assert len(dists) == 1
54
55
+ @warnings_helper.ignore_fork_in_thread_deprecation_warnings()
56
@unittest.skipUnless(
57
hasattr(os, 'register_at_fork')
58
and 'fork' in multiprocessing.get_all_start_methods(),
0 commit comments