mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-09-17 14:58:16 +00:00
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:
@@ -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):
|
||||
|
Reference in New Issue
Block a user