damp-london-75918
02/01/2024, 1:06 AMpants tailor :: it generates a very large number of BUILD files because the project is big and has many directories containing Python code. I'm unfamiliar with most of the code so this makes me a little nervous. Is there a way to do this more incrementally? For instance, could I set up a top-level python_sources and break it up gradually later, starting with the directories I'm most familiar with?ambitious-actor-36781
02/01/2024, 1:33 AMpython_sources(files=["**/*.py", "!**/test_*.py", ...])
and python_tests(...)damp-london-75918
02/01/2024, 1:58 AMambitious-actor-36781
02/01/2024, 2:47 AMambitious-actor-36781
02/01/2024, 2:48 AMpants tailor which directories to tailor, so you don't need to do it all at once.ambitious-actor-36781
02/01/2024, 2:49 AMdamp-london-75918
02/01/2024, 2:51 AMcurved-manchester-66006
02/01/2024, 3:58 PM