gentle-painting-32087
01/05/2024, 4:45 PMpython_requirements(
name="reqs",
source="lambda_requirements.txt",
)
Anyways to remove that specific file from the BUILD detection? Thanks!careful-address-89803
01/06/2024, 6:54 PMpython_requirements
target as part of tailor
?
If you want Pants to not generate those targets as part of tailor
, you can disable that option https://www.pantsbuild.org/docs/reference-python#tailor_requirements_targets
If you want Pants to not see the file at all, you can use ignores https://www.pantsbuild.org/docs/reference-global#pants_ignore . But that will also prevent pants from pulling it in as a file
target, which might not be what you want.gentle-painting-32087
01/06/2024, 11:53 PM