441 enabled re-using parts of a test suite by using YAML anchors, aliases and merge keys. It also removed our own inheritance support for config options, as using this inheritance means there is no way of specifying "ignore". For example, if a tab has a config option for stdout, it will be inherited by all testcases inside the tab, unless you explicitly override it.
While at the time, the idea was that this would be confusing sometimes, it does cover the most common case of "apply this config to everything". Therefore, this PR re-adds the support.
The means specifically that the following test suite will work as expected:
441 enabled re-using parts of a test suite by using YAML anchors, aliases and merge keys. It also removed our own inheritance support for config options, as using this inheritance means there is no way of specifying "ignore". For example, if a tab has a config option for stdout, it will be inherited by all testcases inside the tab, unless you explicitly override it.
While at the time, the idea was that this would be confusing sometimes, it does cover the most common case of "apply this config to everything". Therefore, this PR re-adds the support.
The means specifically that the following test suite will work as expected:
Without this PR, you would need to apply the config to all testcases individually.