Skip to content

Commit 7732c25

Browse files
authored
Fix indentation in console output (#806)
* Turn off yolo GH action
1 parent 0449bd4 commit 7732c25

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test-mlperf-inference-yolo-closed-div.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
schedule:
77
- cron: '0 0 * * *' # Runs daily at 12 AM UTC
88
pull_request_target:
9-
branches: [ "main", "dev" ]
9+
branches: [ "main_off", "dev_off" ]
1010
paths:
1111
- '.github/workflows/test-mlperf-inference-yolo.yml'
1212
- '**'

.github/workflows/test-mlperf-inference-yolo-open-div.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
schedule:
77
- cron: '0 0 * * *' # Runs daily at 12 AM UTC
88
pull_request_target:
9-
branches: [ "main", "dev" ]
9+
branches: [ "main_off", "dev_off" ]
1010
paths:
1111
- '.github/workflows/test-mlperf-inference-yolo.yml'
1212
- '**'

automation/script/module.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@ def _update_state_from_variations(
21172117
variation_tags_string = ','.join(['_' + t for t in variation_tags])
21182118

21192119
logger.debug(self.recursion_spaces +
2120-
f" - Prepared variations: {variation_tags_string}")
2120+
f" - Prepared variations: {variation_tags_string}")
21212121

21222122
# Apply individual variations
21232123
for variation_tag in variation_tags:
@@ -3315,6 +3315,7 @@ def replacer(match):
33153315

33163316
ii = {
33173317
'automation': utils.assemble_object(self.meta['alias'], self.meta['uid']),
3318+
'recursion_spaces': recursion_spaces, # + extra_recursion_spaces,
33183319
'recursion': True,
33193320
'debug_script_tags': debug_script_tags,
33203321
'env': env,

0 commit comments

Comments
 (0)