Skip to content

Commit 94626a1

Browse files
committed
fix: ignore wait script for tests
1 parent a713524 commit 94626a1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

tests/pr_test.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,18 @@ func TestRunStandardSolution(t *testing.T) {
117117
},
118118
}
119119

120+
options.IgnoreAdds = testhelper.Exemptions{
121+
List: []string{
122+
"null_resource.wait_for_cloud_pak_deployer_complete",
123+
},
124+
}
125+
126+
options.IgnoreDestroys = testhelper.Exemptions{
127+
List: []string{
128+
"null_resource.wait_for_cloud_pak_deployer_complete",
129+
},
130+
}
131+
120132
output, err := options.RunTestConsistency()
121133
assert.Nil(t, err, "This should not have errored")
122134
assert.NotNil(t, output, "Expected some output")
@@ -205,6 +217,18 @@ func TestRunStandardUpgradeSolution(t *testing.T) {
205217
},
206218
}
207219

220+
options.IgnoreAdds = testhelper.Exemptions{
221+
List: []string{
222+
"null_resource.wait_for_cloud_pak_deployer_complete",
223+
},
224+
}
225+
226+
options.IgnoreDestroys = testhelper.Exemptions{
227+
List: []string{
228+
"null_resource.wait_for_cloud_pak_deployer_complete",
229+
},
230+
}
231+
208232
output, err := options.RunTestUpgrade()
209233
if !options.UpgradeTestSkipped {
210234
assert.Nil(t, err, "This should not have errored")

0 commit comments

Comments
 (0)