Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
schedule:
- cron: '0 0 * * *' # Runs daily at 12 AM UTC
pull_request_target:
branches: [ "main", "dev" ]
branches: [ "main_off", "dev_off" ]
paths:
- '.github/workflows/test-mlperf-inference-yolo.yml'
- '**'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
schedule:
- cron: '0 0 * * *' # Runs daily at 12 AM UTC
pull_request_target:
branches: [ "main", "dev" ]
branches: [ "main_off", "dev_off" ]
paths:
- '.github/workflows/test-mlperf-inference-yolo.yml'
- '**'
Expand Down
3 changes: 2 additions & 1 deletion automation/script/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -2117,7 +2117,7 @@ def _update_state_from_variations(
variation_tags_string = ','.join(['_' + t for t in variation_tags])

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

# Apply individual variations
for variation_tag in variation_tags:
Expand Down Expand Up @@ -3315,6 +3315,7 @@ def replacer(match):

ii = {
'automation': utils.assemble_object(self.meta['alias'], self.meta['uid']),
'recursion_spaces': recursion_spaces, # + extra_recursion_spaces,
'recursion': True,
'debug_script_tags': debug_script_tags,
'env': env,
Expand Down
Loading