ci: Unify character for separating items

the test names are using `;` and regexps were designed to use `,` but
during development simply joined the expressions by `|`. This should
work but might be confusing so let's go with the semi-colon separator
everywhere.

Signed-off-by: Lukáš Doktor <ldoktor@redhat.com>
This commit is contained in:
Lukáš Doktor
2024-07-18 13:05:51 +02:00
parent fdcfac0641
commit dd2878a9c8
2 changed files with 3 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ class Checks:
if values.get("regexps"):
required_regexps.add(values["regexps"])
print(';'.join(required_tests))
print('|'.join(required_regexps))
print(';'.join(required_regexps))
return 0
def get_features(self, target_branch):