elegant-lamp-68463
02/01/2024, 5:47 AMpants tailor :: but it doesn't create any BUILD file like described in the docs. Below is my directory tree:
.
├── functions
│ ├── authorizer
│ │ ├── pyproject.toml
│ │ ├── src
│ │ │ └── authorizer
│ │ │ └── __init__.py
│ │ └── tests
│ │ └── __init__.py
│ └── users
│ ├── pyproject.toml
│ ├── src
│ │ └── users
│ │ └── __init__.py
│ └── tests
│ └── __init__.py
└── pants.toml
My pants.toml is just
[GLOBAL]
pants_version = "2.19.0"
backend_packages = [
"pants.backend.python",
]
I also tried enabling stack trace and verbose logging, got literally no new information, the output is exactly the same. The documentation page about Python has no mention of this problem too.
There is no output, no error too, and pants roots does list the projects correctly, so I'm out of idea now. Can anyone tell me what else to check here? This is my first-time experience with Pants. Thanks.careful-address-89803
02/01/2024, 6:04 AM__init__ files empty? Pants ignores empty init files by default, you can turn that off by setting this setting to falseelegant-lamp-68463
02/01/2024, 6:25 AMBUILD files now.