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

fix message for conan create test_package missing binaries #17581

Merged
merged 1 commit into from
Jan 15, 2025
Merged
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
4 changes: 2 additions & 2 deletions conans/client/graph/install_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@ def _raise_missing(self, missing):
missing_pkgs = "', '".join(list(sorted([str(pref.ref) for pref in missing_prefs])))
if self._is_test_package:
build_msg = "This is a **test_package** missing binary. You can use --build (for " \
"all dependencies) or --build-test (exclusive for 'test_package' " \
"dependencies) to define what can be built from sources"
"all dependencies) or --build-test (exclusive for 'conan create' building " \
"test_package' dependencies) to define what can be built from sources"
else:
if len(missing_prefs) >= 5:
build_str = "--build=missing"
Expand Down
Loading