cold-soccer-63228
05/12/2022, 1:20 PMBUILD
files for python_tests
targets. See the code snippets below for reference.
⢠Why is a name
parameter generated at all? Why is this necessary?
⢠Why is it that sometimes a "tests0"
string is (rarely) used for a name, whereas other times "tests"
is used?
# path/to/some/BUILD
python_tests(
name="tests0",
)
# path/to/another/BUILD
python_tests(
name="tests",
)
narrow-vegetable-37489
05/12/2022, 1:24 PMpython_sources()
and python_tests()
within a BUILD file.hundreds-father-404
05/12/2022, 1:36 PMtests0
, that means the name tests
was already claimed in that directorycold-soccer-63228
05/12/2022, 1:38 PM