Skip to content

Commit

Permalink
Fix variable name in test assertions and update yamlfix command for f…
Browse files Browse the repository at this point in the history
…ormatting (#3218)
  • Loading branch information
safoinme authored Nov 26, 2024
1 parent 39f9ca9 commit c6af690
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ ruff format $SRC

# standardizes / formats CI yaml files
if [ "$SKIP_YAMLFIX" = false ]; then
yamlfix --check .github tests -e "dependabot.yml" -e "workflows/release_prepare.yml" -e "workflows/release_finalize.yml" -e "workflows/integration-test-fast-services.yml" -e "workflows/integration-test-slow-services.yml"
yamlfix .github tests -e "dependabot.yml" -e "workflows/release_prepare.yml" -e "workflows/release_finalize.yml" -e "workflows/integration-test-fast-services.yml" -e "workflows/integration-test-slow-services.yml"
fi
8 changes: 4 additions & 4 deletions tests/integration/functional/zen_stores/test_zen_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -2978,8 +2978,8 @@ def test_get_run_step_outputs_succeeds():
with PipelineRunContext(1):
steps = store.list_run_steps(StepRunFilter(name="step_2"))

for step in steps.items:
run_step_outputs = store.get_run_step(step.id).outputs
for step_item in steps.items:
run_step_outputs = store.get_run_step(step_item.id).outputs
assert len(run_step_outputs) == 1


Expand All @@ -2990,8 +2990,8 @@ def test_get_run_step_inputs_succeeds():

with PipelineRunContext(1):
steps = store.list_run_steps(StepRunFilter(name="step_2"))
for step in steps.items:
run_step_inputs = store.get_run_step(step.id).inputs
for step_item in steps.items:
run_step_inputs = store.get_run_step(step_item.id).inputs
assert len(run_step_inputs) == 1


Expand Down

0 comments on commit c6af690

Please sign in to comment.