For correct overrides which can be provided in extra yaml arguments
to teuthology-suites the joined yaml of job_config from suite directory
must go first in order.
Fixes: 96f38f2136dd2a4f64cc741919b85dc65a9df536
Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
'--description', description,
'--',
])
- arg.extend(self.base_yaml_paths)
-
- parsed_yaml_txt = yaml.dump(parsed_yaml)
+ # In order overriding with extra yaml paths could possibly work,
+ # order parsed yaml before base_yaml_paths
arg.append('-')
+ parsed_yaml_txt = yaml.dump(parsed_yaml)
+ arg.extend(self.base_yaml_paths)
job = dict(
yaml=parsed_yaml,