Skip to content

Commit fb65b57

Browse files
committed
Skip failing test
1 parent 6d0c2c6 commit fb65b57

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

tests/IronPython.Tests/Cases/IronPythonCasesManifest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,4 +208,4 @@ IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/489
208208
FullFrames=true
209209

210210
[IronPython.modules.system_related.test_sys]
211-
RunCondition=NOT $(IS_NETCOREAPP) # https://github.com/IronLanguages/ironpython3/issues/2055
211+
RunCondition=NOT $(IS_NETCOREAPP) # https://github.com/IronLanguages/ironpython3/issues/2057

tests/suite/test_dict_stdlib.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def load_tests(loader, standard_tests, pattern):
3030
if is_mono:
3131
skip_tests += [
3232
test.test_dict.DictTest('test_container_iterator'), # https://github.com/IronLanguages/ironpython3/issues/544
33+
test.test_dict.DictTest('test_free_after_iterating') # AssertionError
3334
]
3435

3536
return generate_suite(tests, failing_tests, skip_tests)

tests/suite/test_stdconsole.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def test_isatty(self):
404404
finally:
405405
self.batfile = hideDefaultBatch
406406

407-
@unittest.skipIf(not is_cli or is_netcoreapp, "https://github.com/IronLanguages/ironpython3/issues/2055")
407+
@unittest.skipIf(not is_cli or is_netcoreapp, "https://github.com/IronLanguages/ironpython3/issues/2057")
408408
def test_cp35263(self):
409409
script = """
410410
import warnings

0 commit comments

Comments
 (0)