The docs say:
include
A space-separated list of extra configuration files to include. Filenames are relative to the directory containingconfig.yaml
.
But if you write, for example:
include: paths.yaml
You get an error:
configuration error: include must be a dictionary or a list, not str
Instead, you must use a yaml list:
include:
- paths.yaml
This works.