Skip to content

Commit 99473f7

Browse files
committed
Disable failing test
1 parent a1c9eb2 commit 99473f7

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

tests/suite/test_socket_stdlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def load_tests(loader, standard_tests, pattern):
3737
test.test_socket.TestSocketSharing('testTypes'), # https://github.com/IronLanguages/ironpython3/issues/1226
3838
test.test_socket.UnbufferedFileObjectClassTestCase('testSmallReadNonBlocking'), # TODO: figure out
3939
]
40-
if is_mono or (is_osx and net_version < (10, 0)):
40+
if is_mono:
4141
failing_tests += [
4242
test.test_socket.NonBlockingTCPTests('testRecv'), # TODO: figure out
4343
]

tests/suite/test_types_stdlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
## Run selected tests from test_types from StdLib
77
##
88

9-
from iptest import is_ironpython, generate_suite, run_test, is_linux, is_netcoreapp21
9+
from iptest import is_ironpython, generate_suite, run_test
1010

1111
import test.test_types
1212

tests/suite/test_typing_stdlib.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ def load_tests(loader, standard_tests, pattern):
4545
test.test_typing.GenericTests('test_type_erasure'),
4646
]
4747

48-
skip_tests = []
48+
skip_tests = [
49+
test.test_typing.NamedTupleTests('test_namedtuple_keyword_usage'), # AssertionError
50+
]
4951

5052
return generate_suite(tests, failing_tests, skip_tests)
5153

0 commit comments

Comments
 (0)