Skip to content

Commit 8c9c272

Browse files
committed
Cleanup
1 parent 8a9afeb commit 8c9c272

4 files changed

Lines changed: 11 additions & 10 deletions

File tree

tests/IronPython.Tests/Cases/CPythonCasesManifest.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -604,9 +604,9 @@ Ignore=true
604604
[CPython.test_lib2to3]
605605
Ignore=true
606606

607-
# TODO: re-enable in 3.4
608-
[CPython.test_linecache]
609-
Ignore=true # blocked by https://github.com/IronLanguages/ironpython3/issues/1245 - using the test_linecache_stdlib approach makes the issue disappear...
607+
# TODO: 3.6
608+
#[CPython.test_linecache]
609+
#Ignore=true # blocked by https://github.com/IronLanguages/ironpython3/issues/1245 - using the test_linecache_stdlib approach makes the issue disappear...
610610

611611
[CPython.test_list]
612612
IsolationLevel=ENGINE
@@ -834,8 +834,8 @@ Ignore=true
834834
Reason=unittest.case.SkipTest: No module named 'readline'
835835

836836
# TODO: 3.6
837-
#[CPython.test_regrtest]
838-
#IsolationLevel=PROCESS
837+
[CPython.test_regrtest]
838+
IsolationLevel=PROCESS
839839
#Ignore=true # lots of failures
840840

841841
[CPython.test_reprlib]

tests/IronPython.Tests/Cases/IronPythonCasesManifest.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ Ignore=true
99
RunCondition='$(FRAMEWORK)' <> '.NETFramework,Version=v4.6.2'
1010
Reason=Requires IAsyncEnumerable & IAsyncDisposable
1111

12-
[IronPython.test_base64_stdlib]
13-
IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/1440
14-
1512
[IronPython.test_builtin_stdlib]
1613
RunCondition=NOT $(IS_MONO)
1714
Reason=Exception on adding DocTestSuite

tests/suite/test_plistlib_stdlib.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ def load_tests(loader, standard_tests, pattern):
1717

1818
if is_ironpython:
1919
failing_tests = []
20+
if sys.version_info < (3, 6):
21+
failing_tests += [
22+
test.test_plistlib.TestBinaryPlistlib('test_identity'), # AssertionError: b'abcde' != Data(b'abcde')
23+
]
2024
if sys.version_info >= (3, 6):
2125
failing_tests += [
2226
test.test_plistlib.TestPlistlib('test_xml_plist_with_entity_decl'), # https://github.com/IronLanguages/ironpython2/issues/464

tests/suite/test_yield_from_stdlib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
from iptest import is_ironpython, generate_suite, run_test
1212

1313
if sys.version_info >= (3, 6):
14-
import test.test_pep380 as test_yield_from
15-
else:
1614
import test.yield_from as test_yield_from
15+
else:
16+
import test.test_pep380 as test_yield_from
1717

1818
def load_tests(loader, standard_tests, pattern):
1919
tests = loader.loadTestsFromModule(test_yield_from, pattern=pattern)

0 commit comments

Comments
 (0)