Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
skip test_enum.test_unique_composite
  • Loading branch information
youknowone committed Apr 23, 2023
commit 73e1eeb57e39006d3649f2e77ab66f6ddabb3ca8
2 changes: 1 addition & 1 deletion Lib/test/test_enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -2889,7 +2889,7 @@ class Color(StrMixin, AllMixin, IntFlag):
self.assertEqual(Color.ALL.value, 7)
self.assertEqual(str(Color.BLUE), 'blue')

@unittest.skipIf(sys.platform == "win32" or sys.platform.startswith("linux"), "TODO: RUSTPYTHON, inconsistent test result on Windows due to threading")
@unittest.skip("TODO: RUSTPYTHON, inconsistent test result due to threading")
@threading_helper.reap_threads
def test_unique_composite(self):
# override __eq__ to be identity only
Expand Down