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
Currently, get_bugs_set() and get_jira_set() assume correct formatting of blockers within blockers.yaml. Since we have certain expectations of what kind of data we are looking for (seven digit number for bugs, 'RHOS(something)-(four digit number)' for tickets) we can use a regex to validate the data retrieved by these functions.
The text was updated successfully, but these errors were encountered:
I think the data validation might need to have it's own config file. As you mention, the use of RHOS[.]-[0-9] is downstream-specific and even then is openstack specific. I like the idea but from a design point of view think this should be a user entered regex in a config file. But I also think users should be able to opt for no-validation.
Currently,
get_bugs_set()
andget_jira_set()
assume correct formatting of blockers withinblockers.yaml
. Since we have certain expectations of what kind of data we are looking for (seven digit number for bugs, 'RHOS(something)-(four digit number)' for tickets) we can use a regex to validate the data retrieved by these functions.The text was updated successfully, but these errors were encountered: