Skip to content

Commit 3d9d232

Browse files
fix: update runner configuration to use input variable and clean up whitespace in log validation utility
1 parent ec94956 commit 3d9d232

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/smoke_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
branch: ${{ github.event_name == 'push' && github.ref_name || github.event.inputs.branch-to-checkout || 'main' }}
7373
tag: ${{ github.event.inputs.tag-to-checkout }}
74-
runner: runner-4
74+
runner: ${{ inputs.runner }}
7575

7676
validation-prepare-setup-mcm:
7777
runs-on: ${{ inputs.runner }}

tests/validation/common/log_validation_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def check_phrases_anywhere(
240240
with open(log_path, "r", encoding="utf-8", errors="ignore") as f:
241241
content = f.read()
242242
lines = content.split("\n")
243-
243+
244244
for phrase in phrases:
245245
if phrase not in content:
246246
missing_phrases.append(phrase)

0 commit comments

Comments
 (0)