You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Docstring for function iterate_yaml_files() states that it should traverse over given directory and "find multiple YAML files recursively".
Pull request kernelci/kernelci-pipeline#1132 shows that this statement is false - PR introduces additional level of directories (trees/) which are ignored by said function:
In [1]: glob.glob(os.path.join('config', '*.yaml'))
Out[1]:
['config/trees.yaml',
'config/scheduler.yaml',
'config/pipeline.yaml',
'config/platforms.yaml',
'config/scheduler-chromeos.yaml',
'config/jobs-chromeos.yaml',
'config/result-summary.yaml',
'config/jobs.yaml',
'config/traces_config.yaml',
'config/platforms-chromeos.yaml']
# 'config/trees/linux-pci.yaml' is missing
The text was updated successfully, but these errors were encountered:
pawiecz
added a commit
to pawiecz/kernelci-core
that referenced
this issue
Apr 25, 2025
Docstring for function
iterate_yaml_files()
states that it should traverse over given directory and "find multiple YAML files recursively".Pull request kernelci/kernelci-pipeline#1132 shows that this statement is false - PR introduces additional level of directories (
trees/
) which are ignored by said function:The text was updated successfully, but these errors were encountered: