echoing-farmer-15630
03/30/2021, 4:11 PMPANTS_CONFIG_FILES
to use a dedicated CI toml file when running from CI (to disable the dynamic ui among others) but this seems duplicative, and the name ...FILES
seems to imply that we can use multiples. Does this "or" the files together or some such, ie can we PANTS_CONFIG_FILES=<http://pants.ci|pants.ci>.toml,pants.toml
to not duplicate things, ie have pants.toml
but overwrite/supplement keys with <http://pants.ci|pants.ci>.toml
? If so, I assume order matters?hundreds-father-404
03/30/2021, 4:13 PMPANTS_CONFIG_FILES=<http://pants.ci|pants.ci>.toml
, that means you're appending to the list, so you still have pants.toml
. If you want to override, you would set to '["<http://pants.ci|pants.ci>.toml"]
Also, it's valid to not have a CI config file. It can be useful, but not requiredechoing-farmer-15630
03/30/2021, 4:20 PMhundreds-father-404
03/30/2021, 4:21 PM