Skip to content

Commit c64b773

Browse files
authored
Conditionally skip test on MacOS. (#378)
1 parent 802ccd2 commit c64b773

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_live.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from __future__ import annotations
22

33
import re
4+
import sys
45
import textwrap
56

67
import pytest
@@ -187,6 +188,7 @@ def test_live_execution_displays_subset_of_table(capsys, tmp_path, n_entries_in_
187188

188189

189190
@pytest.mark.unit()
191+
@pytest.mark.xfail(sys.platform == "darwin", reason="See #377.")
190192
def test_live_execution_skips_do_not_crowd_out_displayed_tasks(capsys, tmp_path):
191193
path = tmp_path.joinpath("task_module.py")
192194
task = Task(base_name="task_example", path=path, function=lambda x: x)

0 commit comments

Comments
 (0)