Skip to content

Commit 84cd795

Browse files
committed
fix.
1 parent ead466a commit 84cd795

3 files changed

Lines changed: 1 addition & 9 deletions

File tree

tests/test_capture.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -750,11 +750,6 @@ def test_many(self, capfd): # noqa: ARG002
750750

751751

752752
class TestStdCaptureFDinvalidFD:
753-
@pytest.mark.skipif(
754-
sys.platform == "darwin" and sys.version_info[:2] == (3, 9),
755-
reason="Causes following tests to fail and kills the pytest session with exit "
756-
"code 137.",
757-
)
758753
def test_stdcapture_fd_invalid_fd(self, tmp_path, runner):
759754
source = """
760755
import os

tests/test_dag_command.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ def task_example(path=Path("input.txt")): ...
6262

6363

6464
@pytest.mark.skipif(not _TEST_SHOULD_RUN, reason="pygraphviz is required")
65-
@pytest.mark.xfail(
66-
sys.platform == "linux" and sys.version_info[:2] == (3, 9), reason="flakey"
67-
)
6865
@pytest.mark.parametrize("layout", _GRAPH_LAYOUTS)
6966
@pytest.mark.parametrize("format_", _TEST_FORMATS)
7067
@pytest.mark.parametrize("rankdir", [_RankDirection.LR.value, _RankDirection.TB])

tests/test_execute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ def task2() -> None: pass
638638

639639

640640
@pytest.mark.xfail(
641-
sys.platform == "linux" and sys.version_info[:2] == (3, 9), reason="flakey"
641+
sys.platform == "linux" and sys.version_info[:2] == (3, 10), reason="flakey"
642642
)
643643
def test_pytask_on_a_module_that_uses_the_functional_api(tmp_path):
644644
source = """

0 commit comments

Comments
 (0)