Skip to content

Commit

Permalink
generate_workflow.py: Disable yapf for cond in tuxsuite_setups()
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
  • Loading branch information
nathanchance committed Dec 20, 2023
1 parent eeb533a commit 0a06e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_workflow.py
Expand Up @@ -147,7 +147,7 @@ def check_cache_job_setup(repo, ref, toolchain):
def tuxsuite_setups(job_name, tuxsuite_yml, repo, ref):
patch_series = patch_series_flag(
tuxsuite_yml.split("/")[1].split("-clang-")[0])
cond = {"if": "${{needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch'}}"}
cond = {"if": "${{needs.check_cache.outputs.output == 'failure' || github.event_name == 'workflow_dispatch'}}"} # yapf: disable
return {
f"kick_tuxsuite_{job_name}": {
"name": f"TuxSuite ({job_name})",
Expand Down

0 comments on commit 0a06e80

Please sign in to comment.