Skip to content

Commit 3bf92c9

Browse files
authored
test: added helm_releases to ignore list for tests (#153)
1 parent d66d2cf commit 3bf92c9

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

tests/pr_test.go

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -579,8 +579,11 @@ func setupOptionsSchematics(t *testing.T, prefix string, dir string) *testhelper
579579
Testing: t,
580580
TerraformDir: dir,
581581
Prefix: prefix,
582-
IgnoreUpdates: testhelper.Exemptions{ // Ignore for consistency check
583-
List: []string{},
582+
IgnoreUpdates: testhelper.Exemptions{ // Ignore for update check the helm releases updates to avoid failures during images updates
583+
List: []string{
584+
"module.external_secrets_operator.helm_release.external_secrets_operator",
585+
"module.external_secrets_operator.helm_release.pod_reloader[0]",
586+
},
584587
},
585588
Region: region,
586589
ResourceGroup: resourceGroup,
@@ -607,10 +610,16 @@ func setupSolutionSchematicOptions(t *testing.T, prefix string, dir string) *tes
607610
"modules/eso-external-secret/*.tf",
608611
dir + "/*.tf",
609612
},
610-
TemplateFolder: dir,
611-
Tags: []string{"test-esoda-schematic"},
612-
Prefix: prefix,
613-
DeleteWorkspaceOnFail: false,
613+
TemplateFolder: dir,
614+
Tags: []string{"test-esoda-schematic"},
615+
Prefix: prefix,
616+
DeleteWorkspaceOnFail: false,
617+
IgnoreUpdates: testhelper.Exemptions{ // Ignore for update check the helm releases updates to avoid failures during images updates
618+
List: []string{
619+
"module.external_secrets_operator.helm_release.external_secrets_operator",
620+
"module.external_secrets_operator.helm_release.pod_reloader[0]",
621+
},
622+
},
614623
WaitJobCompleteMinutes: 60,
615624
})
616625

0 commit comments

Comments
 (0)