-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add yaml include support #3133
base: main
Are you sure you want to change the base?
Add yaml include support #3133
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should add description and unit tests to show how this supposed to be used ?
Please explain why this feature is needed. |
Added the description of how to use the "include". Also include the example in the unit_test. api_version: 3 include: 1.yml participants:
|
Fixes # .
Description
Added the support for yaml to include another yaml configuration file.
YAML does not naturally support any kind of "import" or "include" statement to include another yaml file. Adding this to support the yaml config in the format like: (include could be single file, or a list of include files.)
....
include: 1.yml
or:
include: [1.yml, 2.yml]
The "include" can be used at any level. Also support recursively include.
Types of changes
./runtest.sh
.