We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a27d812 commit a952102Copy full SHA for a952102
Lib/test/test_importlib/test_abc.py
@@ -358,6 +358,7 @@ def is_package(self, fullname):
358
359
return SpecLoader()
360
361
+ @unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON; Flaky on CI")
362
def test_fresh(self):
363
with warnings.catch_warnings():
364
warnings.simplefilter("ignore", DeprecationWarning)
@@ -375,6 +376,7 @@ def test_fresh(self):
375
376
self.assertIsNotNone(module.__path__,
377
module.__spec__.submodule_search_locations)
378
379
380
def test_reload(self):
381
382
0 commit comments