Skip to content

Commit 864344d

Browse files
authored
Re-enable tests (IronLanguages#2063)
1 parent 8e1996f commit 864344d

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

tests/IronPython.Tests/Cases/IronPythonCasesManifest.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,3 @@ RunCondition=$(IS_POSIX) # Module resource is Posix-specific
203203
[IronPython.modules.system_related.test_sys_getframe]
204204
IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/489
205205
FullFrames=true
206-
207-
[IronPython.modules.system_related.test_sys]
208-
RunCondition=NOT $(IS_NETCOREAPP) # https://github.com/IronLanguages/ironpython3/issues/2057

tests/suite/test_stdconsole.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import sys
88
import unittest
99

10-
from iptest import IronPythonTestCase, is_cli, is_netcoreapp21, is_posix, run_test, skipUnlessIronPython, is_netcoreapp
10+
from iptest import IronPythonTestCase, is_cli, is_netcoreapp21, is_posix, run_test, skipUnlessIronPython
1111

1212
if is_cli:
1313
import clr
@@ -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/2057")
407+
@skipUnlessIronPython()
408408
def test_cp35263(self):
409409
script = """
410410
import warnings

0 commit comments

Comments
 (0)