-
-
Notifications
You must be signed in to change notification settings - Fork 599
fix: Fix per-file config interaction with one py_binary per main #1664
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
Merged
Changes from all commits
Commits
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
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
4 changes: 4 additions & 0 deletions
4
gazelle/python/testdata/binary_without_entrypoint_per_file_generation/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,4 @@ | ||
# gazelle:python_generation_mode file | ||
|
||
# gazelle:resolve py numpy @pip//:numpy | ||
# gazelle:resolve py pandas @pip//:pandas |
46 changes: 46 additions & 0 deletions
46
gazelle/python/testdata/binary_without_entrypoint_per_file_generation/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,46 @@ | ||
load("@rules_python//python:defs.bzl", "py_binary", "py_library") | ||
|
||
# gazelle:python_generation_mode file | ||
|
||
# gazelle:resolve py numpy @pip//:numpy | ||
# gazelle:resolve py pandas @pip//:pandas | ||
|
||
py_library( | ||
name = "lib", | ||
srcs = ["lib.py"], | ||
visibility = ["//:__subpackages__"], | ||
deps = [ | ||
"@pip//:numpy", | ||
"@pip//:pandas", | ||
], | ||
) | ||
|
||
py_library( | ||
name = "lib2", | ||
srcs = ["lib2.py"], | ||
visibility = ["//:__subpackages__"], | ||
deps = [ | ||
":lib", | ||
":lib_and_main", | ||
], | ||
) | ||
|
||
py_binary( | ||
name = "lib_and_main", | ||
srcs = ["lib_and_main.py"], | ||
visibility = ["//:__subpackages__"], | ||
) | ||
|
||
py_binary( | ||
name = "main", | ||
srcs = ["main.py"], | ||
visibility = ["//:__subpackages__"], | ||
deps = ["@pip//:pandas"], | ||
) | ||
|
||
py_binary( | ||
name = "main2", | ||
srcs = ["main2.py"], | ||
visibility = ["//:__subpackages__"], | ||
deps = [":lib2"], | ||
) |
4 changes: 4 additions & 0 deletions
4
gazelle/python/testdata/binary_without_entrypoint_per_file_generation/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,4 @@ | ||
# Binary without entrypoint | ||
|
||
This test case asserts that when there is no __main__.py, a py_binary is generated per file main module, and that this | ||
py_binary is instead of (not in addition to) any py_library target. | ||
1 change: 1 addition & 0 deletions
1
gazelle/python/testdata/binary_without_entrypoint_per_file_generation/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/lib.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 @@ | ||
import numpy | ||
import pandas |
2 changes: 2 additions & 0 deletions
2
gazelle/python/testdata/binary_without_entrypoint_per_file_generation/lib2.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 @@ | ||
import lib | ||
import lib_and_main |
6 changes: 6 additions & 0 deletions
6
gazelle/python/testdata/binary_without_entrypoint_per_file_generation/lib_and_main.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,6 @@ | ||
def library_func(): | ||
print("library_func") | ||
|
||
|
||
if __name__ == "__main__": | ||
library_func() |
4 changes: 4 additions & 0 deletions
4
gazelle/python/testdata/binary_without_entrypoint_per_file_generation/main.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,4 @@ | ||
import pandas | ||
|
||
if __name__ == "__main__": | ||
run() |
4 changes: 4 additions & 0 deletions
4
gazelle/python/testdata/binary_without_entrypoint_per_file_generation/main2.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,4 @@ | ||
import lib2 | ||
|
||
if __name__ == "__main__": | ||
lib2.lib_and_main.library_func() |
17 changes: 17 additions & 0 deletions
17
gazelle/python/testdata/binary_without_entrypoint_per_file_generation/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 2023 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 | ||
# | ||
# Un 4B6F less 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 |
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.