Skip to content

Commit

Permalink
Skip test_dict.DictTest.est_container_iterator on Mono
Browse files Browse the repository at this point in the history
  • Loading branch information
BCSharp committed Dec 24, 2024
1 parent c6834fb commit aee26b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Tests/test_dict_stdlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@ def load_tests(loader, standard_tests, pattern):
test.test_dict.DictTest('test_oob_indexing_dictiter_iternextitem'),
test.test_dict.DictTest('test_setdefault_atomic'),
]

skip_tests = []
if is_mono:
failing_tests += [
skip_tests += [
test.test_dict.DictTest('test_container_iterator'), # https://github.com/IronLanguages/ironpython3/issues/544
]

return generate_suite(tests, failing_tests)
return generate_suite(tests, failing_tests, skip_tests)

else:
return tests
Expand Down

0 comments on commit aee26b4

Please sign in to comment.