Skip to content

Commit 2287720

Browse files
committed
Mark flaky test_enum::TestFlag::test_unique_composite skip
1 parent 91b57a3 commit 2287720

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Lib/test/test_enum.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2466,9 +2466,7 @@ class Color(StrMixin, AllMixin, Flag):
24662466
self.assertEqual(Color.ALL.value, 7)
24672467
self.assertEqual(str(Color.BLUE), 'blue')
24682468

2469-
# TODO: RUSTPYTHON
2470-
@unittest.expectedFailure
2471-
@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, inconsistent test result on Windows due to threading")
2469+
@unittest.skip("TODO: RUSTPYTHON, inconsistent test result on Windows due to threading")
24722470
@threading_helper.reap_threads
24732471
def test_unique_composite(self):
24742472
# override __eq__ to be identity only

0 commit comments

Comments
 (0)