Skip to content

Commit f7900f0

Browse files
authored
Disable 3-arg test on macos (#1212)
Disable 3-arg `TimeConstrained[]` test on macos
1 parent 0e5bfef commit f7900f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/builtin/test_datentime.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ def test_private_doctests_datetime(str_expr, msgs, str_expected, fail_msg):
128128

129129

130130
@pytest.mark.skipif(
131-
sys.platform in ("emscripten",),
132-
reason="TimeConstrained is based in Threads, which are not supported in Piodide",
131+
sys.platform in ("emscripten", "darwin"),
132+
reason="TimeConstrained is based in Threads, which are not supported in Piodide and has problems on MacOS",
133133
)
134134
@pytest.mark.parametrize(
135135
("str_expr", "msgs", "str_expected", "fail_msg"),

0 commit comments

Comments
 (0)