Maybe this is already possible and i just don't know how to use it.
Is there a way for a config file to include another config file, i.e. split and reuse config files partially?
Multiple config files can be configured and they are recognized when they're all passed through command line, but whatever i try, i cannot specify the same or another config file within a existing config file.
Here's what i tried:
Parser fragment:
parser.add("-cfg", "--configFile", is_config_file=True)
parser.add("-cfg2", "--configFile2", is_config_file=True)
-
Works, i.e. reads both config files:
test.py --configFile "test.yaml" --configFile2 "test2.yaml"
-
Doesn't read "test2.yaml":
test.py --configFile "test.yaml"
test.yaml:
configFile: "test2.yaml"
-
Also doesn't read "test2.yaml":
test.py --configFile "test.yaml"
test.yaml:
configFile2: "test2.yaml"
Maybe this is already possible and i just don't know how to use it.
Is there a way for a config file to include another config file, i.e. split and reuse config files partially?
Multiple config files can be configured and they are recognized when they're all passed through command line, but whatever i try, i cannot specify the same or another config file within a existing config file.
Here's what i tried:
Parser fragment:
Works, i.e. reads both config files:
test.py --configFile "test.yaml" --configFile2 "test2.yaml"Doesn't read "test2.yaml":
test.py --configFile "test.yaml"test.yaml:
configFile: "test2.yaml"Also doesn't read "test2.yaml":
test.py --configFile "test.yaml"test.yaml:
configFile2: "test2.yaml"