-
-
Notifications
You must be signed in to change notification settings - Fork 603
fix: Gazelle bug with merging py_binary targets in per-file mode and partial update #2619
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
Merged
dougthor42
merged 8 commits into
bazel-contrib:main
from
jimmyt857:jimmy/multiple_binary_mre
Feb 25, 2025
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
77732ba
MRE for gazelle bug with partial py_binary update
1c4e608
Fix missing eof newline
58ba13b
Fix bug
fac11c3
Merge branch 'main' into jimmy/multiple_binary_mre
jimmyt857 02a205e
Merge branch 'main' into jimmy/multiple_binary_mre
jimmyt857 74c41e7
Merge branch 'main' into jimmy/multiple_binary_mre
jimmyt857 e86d0ff
Merge branch 'main' into jimmy/multiple_binary_mre
jimmyt857 7e7a6de
Address comments
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
9 changes: 9 additions & 0 deletions
9
...lle/python/testdata/binary_without_entrypoint_per_file_generation_partial_update/BUILD.in
This file contains hidden or 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,9 @@ | ||
load("@rules_python//python:defs.bzl", "py_binary") | ||
|
||
# gazelle:python_generation_mode file | ||
|
||
py_binary( | ||
name = "a", | ||
srcs = ["a.py"], | ||
visibility = ["//:__subpackages__"], | ||
) |
15 changes: 15 additions & 0 deletions
15
...le/python/testdata/binary_without_entrypoint_per_file_generation_partial_update/BUILD.out
This file contains hidden or 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,15 @@ | ||
load("@rules_python//python:defs.bzl", "py_binary") | ||
|
||
# gazelle:python_generation_mode file | ||
|
||
py_binary( | ||
name = "a", | ||
srcs = ["a.py"], | ||
visibility = ["//:__subpackages__"], | ||
) | ||
|
||
py_binary( | ||
name = "b", | ||
srcs = ["b.py"], | ||
visibility = ["//:__subpackages__"], | ||
) |
3 changes: 3 additions & 0 deletions
3
...testdata/binary_without_entrypoint_per_file_generation_partial_update/README.md
This file contains hidden or 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,3 @@ | ||
# Partial update with multiple per-file binaries | ||
|
||
This test case asserts that when there are multiple binaries in a package, and no __main__.py, and the BUILD file already includes a py_binary for one of the files, a py_binary is generated for the other file. |
1 change: 1 addition & 0 deletions
1
...le/python/testdata/binary_without_entrypoint_per_file_generation_partial_update/WORKSPACE
This file contains hidden or 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 @@ | ||
# This is a Bazel workspace for the Gazelle test data. |
2 changes: 2 additions & 0 deletions
2
gazelle/python/testdata/binary_without_entrypoint_per_file_generation_partial_update/a.py
This file contains hidden or 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,2 @@ | ||
if __name__ == "__main__": | ||
print("Hello, world!") |
2 changes: 2 additions & 0 deletions
2
gazelle/python/testdata/binary_without_entrypoint_per_file_generation_partial_update/b.py
This file contains hidden or 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,2 @@ | ||
if __name__ == "__main__": | ||
print("Hello, world!") |
17 changes: 17 additions & 0 deletions
17
...le/python/testdata/binary_without_entrypoint_per_file_generation_partial_update/test.yaml
This file contains hidden or 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,17 @@ | ||
# Copyright 2025 The Bazel Authors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
--- | ||
expect: | ||
exit_code: 0 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.