forked from pex-tool/pex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since pex-tool#2346 which was released in Pex 2.1.161, using `--only-binary X` with a `--lock` would fail fast even if the lock itself was created with `--only-binary X`, which should be compatible. Fixes pex-tool#2432
- Loading branch information
Showing
4 changed files
with
100 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2015 Pex project contributors. | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
__version__ = "2.4.0" | ||
__version__ = "2.4.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# Copyright 2024 Pex project contributors. | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
import os.path | ||
from textwrap import dedent | ||
|
||
from pex.compatibility import commonpath | ||
from pex.targets import LocalInterpreter | ||
from pex.typing import TYPE_CHECKING | ||
from testing import run_pex_command | ||
from testing.cli import run_pex3 | ||
|
||
if TYPE_CHECKING: | ||
from typing import Any, Iterable, Optional | ||
|
||
|
||
def test_lock_use_no_build_wheel(tmpdir): | ||
# type: (Any)-> None | ||
|
||
lock = os.path.join(str(tmpdir), "lock") | ||
run_pex3( | ||
"lock", | ||
"create", | ||
"ansicolors==1.1.8", | ||
"--only-binary", | ||
"ansicolors", | ||
"-o", | ||
lock, | ||
"--style", | ||
"universal", | ||
"--indent", | ||
"2", | ||
).assert_success() | ||
|
||
def assert_pex_from_lock( | ||
extra_args=(), # type: Iterable[str] | ||
expected_error=None, # type: Optional[str] | ||
): | ||
# type: (...) -> None | ||
|
||
pex_root = os.path.realpath(os.path.join(str(tmpdir), "pex_root")) | ||
args = [ | ||
"--pex-root", | ||
pex_root, | ||
"--runtime-pex-root", | ||
pex_root, | ||
"--lock", | ||
lock, | ||
"--", | ||
"-c", | ||
"import colors, os; print(os.path.realpath(colors.__file__))", | ||
] | ||
result = run_pex_command(args=list(extra_args) + args) | ||
if expected_error: | ||
result.assert_failure() | ||
assert expected_error in result.error | ||
else: | ||
result.assert_success() | ||
assert pex_root == commonpath((pex_root, result.output.strip())) | ||
|
||
assert_pex_from_lock() | ||
|
||
# A redundant --only-binary should not matter. | ||
assert_pex_from_lock(extra_args=["--only-binary", "ansicolors"]) | ||
|
||
# An extraneous --only-build should not matter. | ||
assert_pex_from_lock(extra_args=["--only-build", "cowsay"]) | ||
|
||
# However; a conflicting --only-build should matter. | ||
assert_pex_from_lock( | ||
extra_args=["--only-build", "ansicolors"], | ||
expected_error=dedent( | ||
"""\ | ||
Failed to resolve all requirements for {target_description} from {lock}: | ||
Configured with: | ||
build: True | ||
only_build: ansicolors | ||
use_wheel: True | ||
Dependency on ansicolors not satisfied, 1 incompatible candidate found: | ||
1.) ansicolors 1.1.8 (via: ansicolors==1.1.8) does not have any compatible artifacts: | ||
""" | ||
).format(lock=lock, target_description=LocalInterpreter.create().render_description()), | ||
) |