Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sgibson91 committed Dec 19, 2024
1 parent 9203513 commit da21c44
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/test_helm_upgrade_decision.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,13 +231,12 @@ def test_generate_hub_matrix_jobs_skip_deploy_label():

pr_labels = ["unrelated1", "deployer:skip-deploy", "unrelated2"]

expected_matrix_jobs = []

result_matrix_jobs = generate_hub_matrix_jobs(
result_staging_jobs, result_prod_jobs = generate_hub_matrix_jobs(
cluster_file, cluster_config, cluster_info, modified_file, pr_labels
)

case.assertCountEqual(result_matrix_jobs, expected_matrix_jobs)
case.assertCountEqual(result_staging_jobs, [])
case.assertCountEqual(result_prod_jobs, [])


def test_generate_support_matrix_jobs_one_cluster():
Expand Down

0 comments on commit da21c44

Please sign in to comment.