1 --- pytest-8.3.3/testing/test_helpconfig.py.orig
2 +++ pytest-8.3.3/testing/test_helpconfig.py
7 +@pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
8 def test_version_verbose(pytester: Pytester, pytestconfig, monkeypatch) -> None:
9 monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD")
10 result = pytester.runpytest("--version", "--version")
12 result.stdout.fnmatch_lines(["*registered third-party plugins:", "*at*"])
15 +@pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
16 def test_version_less_verbose(pytester: Pytester, pytestconfig, monkeypatch) -> None:
17 monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD")
18 result = pytester.runpytest("--version")
19 --- pytest-8.3.3/testing/test_junitxml.py.orig
20 +++ pytest-8.3.3/testing/test_junitxml.py
22 result.stdout.fnmatch_lines(expected_lines)
25 +@pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
26 def test_random_report_log_xdist(
27 pytester: Pytester, monkeypatch: MonkeyPatch, run_and_parse: RunAndParse
30 assert first == second
33 +@pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
34 def test_runs_twice_xdist(
35 pytester: Pytester, monkeypatch: MonkeyPatch, run_and_parse: RunAndParse
37 --- pytest-8.3.3/testing/test_terminal.py.orig
38 +++ pytest-8.3.3/testing/test_terminal.py
40 result.stdout.fnmatch_lines(["test_passes.py ..*", "* 2 pass*"])
41 assert result.ret == 0
43 + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
44 def test_header_trailer_info(
45 self, monkeypatch: MonkeyPatch, pytester: Pytester, request
49 assert result.ret == 1
51 + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
52 def test_verbose_reporting_xdist(
59 + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
60 def test_xdist_normal(
61 self, many_tests_files, pytester: Pytester, monkeypatch
64 output = pytester.runpytest("-n2")
65 output.stdout.re_match_lines([r"\.{20} \s+ \[100%\]"])
67 + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
68 def test_xdist_normal_count(
69 self, many_tests_files, pytester: Pytester, monkeypatch
72 output = pytester.runpytest("-n2")
73 output.stdout.re_match_lines([r"\.{20} \s+ \[20/20\]"])
75 + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
76 def test_xdist_verbose(
77 self, many_tests_files, pytester: Pytester, monkeypatch
83 + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073")
84 def test_xdist_normal(self, many_files, pytester: Pytester, monkeypatch) -> None:
85 pytest.importorskip("xdist")
86 monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", raising=False)