Skip to content

Commit 7ae6bce

Browse files
Merge branch 'main' into test_umdp3
2 parents 9754931 + 53c8690 commit 7ae6bce

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

git-migration/config.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@
5353
{ "vn1.2": 10378 },
5454
{ "vn1.3": 10614 },
5555
{ "vn1.4": 11231 },
56-
{ "vn1.5": 11589 }
56+
{ "vn1.5": 11589 },
57+
{ "git_migration": 12145 }
5758
]
5859
},
5960
{
@@ -391,7 +392,8 @@
391392
{ "vn13.6": 125228 },
392393
{ "vn13.7": 127063 },
393394
{ "vn13.8": 128862 },
394-
{ "vn13.9": 130315 }
395+
{ "vn13.9": 130315 },
396+
{ "git_migration": 131672 }
395397
]
396398
},
397399
{
@@ -445,7 +447,8 @@
445447
{ "vn13.6": 124981 },
446448
{ "vn13.7": 127030 },
447449
{ "vn13.8": 128625 },
448-
{ "vn13.9": 130128 }
450+
{ "vn13.9": 130128 },
451+
{ "git_migration": 131675 }
449452
]
450453
},
451454
{

github_scripts/suite_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def get_workflow_id(self) -> str:
306306

307307
with open(self.suite_path / "log" / "scheduler" / "log", "r") as f:
308308
for line in f:
309-
match = re.search(r"INFO - Workflow: (\w+\/\w+)", line)
309+
match = re.search(r"INFO - Workflow: (\S+\/\w+)", line)
310310
try:
311311
workflow_id = match.group(1)
312312
return workflow_id
@@ -336,7 +336,7 @@ def read_groups_run(self) -> str:
336336
for row in self.query_suite_database(
337337
self.suite_path / "log" / "db", ["key", "value"], "workflow_template_vars"
338338
):
339-
if row[0] in ("g", "groups"):
339+
if row[0] in ("g", "group"):
340340
groups = row[1].strip("[]'\"").split(",")
341341
break
342342
return groups

0 commit comments

Comments
 (0)