From 22877202019b471e52afdc7a3236a84981b1ddd2 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Fri, 10 Mar 2023 02:46:14 +0900 Subject: [PATCH] Mark flaky test_enum::TestFlag::test_unique_composite skip --- Lib/test/test_enum.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index 19273e996..0c640c253 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -2466,9 +2466,7 @@ class TestFlag(unittest.TestCase): self.assertEqual(Color.ALL.value, 7) self.assertEqual(str(Color.BLUE), 'blue') - # TODO: RUSTPYTHON - @unittest.expectedFailure - @unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, inconsistent test result on Windows due to threading") + @unittest.skip("TODO: RUSTPYTHON, inconsistent test result on Windows due to threading") @threading_helper.reap_threads def test_unique_composite(self): # override __eq__ to be identity only