Skip to content

Are there config file includes (do config file attributes get parsed when they're in yaml) #272

@ridilculous

Description

@ridilculous

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"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions