proud-dentist-22844
05/31/2023, 4:25 PMmain
, and pants does not seem to be using my ~/.pants.rc
file.
Is there a way to dump the effective config to see what options pants is using and validate if the rc file is taking effect? If not, then there might be something ignoring the [GLOBAL].*_dir
opts.fast-nail-55400
05/31/2023, 4:29 PM./pants help SUBSYSTEM
will show the default values for each option and how it was set.proud-dentist-22844
05/31/2023, 4:31 PMproud-dentist-22844
05/31/2023, 4:35 PM./pants help-advanced global
was just the ticket. I didn't realize that displayed the current and default values. Thanks @fast-nail-55400!
So, my rc file is taking effect. I think the testutils must be doing something with the path then.fast-nail-55400
05/31/2023, 4:37 PM.pants.rc
not take effect?proud-dentist-22844
05/31/2023, 4:49 PM/tmp
, which is on a different mount than everything else. But I have [GLOBAL].local_execution_root_dir
set to a path that is on the same mount as the other dirs, so I was confused why I was seeing that.
I think the test utils are creating their own tmp dirs, which makes sense. So, I just need to figure out how to get the tests to use a different dir.proud-dentist-22844
05/31/2023, 4:54 PMproud-dentist-22844
05/31/2023, 5:02 PM