--- pytest-9.0.1/testing/test_helpconfig.py.orig +++ pytest-9.0.1/testing/test_helpconfig.py @@ -6,6 +6,7 @@ import pytest +@pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_version_verbose(pytester: Pytester, pytestconfig, monkeypatch) -> None: monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD") monkeypatch.delenv("PYTEST_PLUGINS", raising=False) @@ -16,6 +17,7 @@ result.stdout.fnmatch_lines(["*registered third-party plugins:", "*at*"]) +@pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_version_less_verbose(pytester: Pytester) -> None: """Single ``--version`` parameter should display only the pytest version, without loading plugins (#13574).""" pytester.makeconftest("print('This should not be printed')") --- pytest-9.0.1/testing/test_junitxml.py.orig +++ pytest-9.0.1/testing/test_junitxml.py @@ -1415,6 +1415,7 @@ result.stdout.fnmatch_lines(expected_lines) +@pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_random_report_log_xdist( pytester: Pytester, monkeypatch: MonkeyPatch, run_and_parse: RunAndParse ) -> None: @@ -1473,6 +1474,7 @@ assert first == second +@pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_runs_twice_xdist( pytester: Pytester, monkeypatch: MonkeyPatch, run_and_parse: RunAndParse ) -> None: --- pytest-9.0.1/testing/test_terminal.py.orig +++ pytest-9.0.1/testing/test_terminal.py @@ -894,6 +894,7 @@ result.stdout.fnmatch_lines(["test_passes.py ..*", "* 2 pass*"]) assert result.ret == 0 + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_header_trailer_info( self, monkeypatch: MonkeyPatch, pytester: Pytester, request ) -> None: @@ -1098,6 +1099,7 @@ ) assert result.ret == 1 + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_verbose_reporting_xdist( self, verbose_testfile, @@ -2325,6 +2327,7 @@ ] ) + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_xdist_normal( self, many_tests_files, pytester: Pytester, monkeypatch ) -> None: @@ -2333,6 +2336,7 @@ output = pytester.runpytest("-n2") output.stdout.re_match_lines([r"\.{20} \s+ \[100%\]"]) + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_xdist_normal_count( self, many_tests_files, pytester: Pytester, monkeypatch ) -> None: @@ -2347,6 +2351,7 @@ output = pytester.runpytest("-n2") output.stdout.re_match_lines([r"\.{20} \s+ \[20/20\]"]) + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_xdist_verbose( self, many_tests_files, pytester: Pytester, monkeypatch ) -> None: @@ -2511,6 +2516,7 @@ ) ) + @pytest.mark.skip(reason="always fails: https://github.com/pytest-dev/pytest/issues/12073") def test_xdist_normal(self, many_files, pytester: Pytester, monkeypatch) -> None: pytest.importorskip("xdist") monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", raising=False)