X Tutup
Skip to content

Commit a952102

Browse files
committed
Skip flaky windows tests
1 parent a27d812 commit a952102

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_importlib/test_abc.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,7 @@ def is_package(self, fullname):
358358

359359
return SpecLoader()
360360

361+
@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON; Flaky on CI")
361362
def test_fresh(self):
362363
with warnings.catch_warnings():
363364
warnings.simplefilter("ignore", DeprecationWarning)
@@ -375,6 +376,7 @@ def test_fresh(self):
375376
self.assertIsNotNone(module.__path__,
376377
module.__spec__.submodule_search_locations)
377378

379+
@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON; Flaky on CI")
378380
def test_reload(self):
379381
with warnings.catch_warnings():
380382
warnings.simplefilter("ignore", DeprecationWarning)

0 commit comments

Comments
 (0)
X Tutup