Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark known test failures #2137

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tests/test_cli_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from unittest import mock
from unittest.mock import MagicMock

import pip
import pytest
from pip._internal.req.constructors import install_req_from_line
from pip._internal.utils.hashes import FAVORITE_HASH
Expand Down Expand Up @@ -1476,6 +1477,10 @@ def test_multiple_input_files_without_output_file(runner):
assert out.exit_code == 2


@pytest.mark.xfail(
Version(pip.__version__) >= Version("24.3"),
reason="known issue in pip versions 24.3 and later (issue #2131)",
)
@pytest.mark.parametrize(
("options", "expected"),
(
Expand Down Expand Up @@ -3232,6 +3237,10 @@ def test_resolver_reaches_max_rounds(runner):
assert out.exit_code != 0, out


@pytest.mark.xfail(
Version(pip.__version__) >= Version("24.3"),
reason="known issue in pip versions 24.3 and later (issue #2131)",
)
def test_preserve_via_requirements_constrained_dependencies_when_run_twice(
pip_conf, runner
):
Expand Down
Loading