Skip to content

Commit 69c24c2

Browse files
authored
tests: Unblocking upgrade test (#60)
* fix: add lookup for taints * fix: unblocking upgrade test * refactor: reverted taint as testing in progress --------- Co-authored-by: Prateek-Sharma13 <[email protected]>
1 parent 2de5c04 commit 69c24c2

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

tests/other_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func TestRunMultiClusterExample(t *testing.T) {
4040
// Do not hard fail the test if the implicit destroy steps fail to allow a full destroy of resource to occur
4141
ImplicitRequired: false,
4242
TerraformVars: map[string]interface{}{
43-
"ocp_version": ocpVersion1,
43+
"ocp_version": ocpVersion2,
4444
},
4545
})
4646
output, err := options.RunTestConsistency()

tests/pr_test.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func setupOptions(t *testing.T, prefix string, terraformDir string) *testhelper.
3737
ResourceGroup: resourceGroup,
3838
CloudInfoService: sharedInfoSvc,
3939
TerraformVars: map[string]interface{}{
40-
"ocp_version": ocpVersion2,
40+
"ocp_version": ocpVersion1,
4141
},
4242
})
4343

@@ -58,9 +58,6 @@ func TestRunStandardExample(t *testing.T) {
5858
func TestRunUpgradeExample(t *testing.T) {
5959
t.Parallel()
6060

61-
// TODO: Remove this line after the first merge to primary branch is complete to enable upgrade test
62-
t.Skip("Skipping upgrade test until initial code is in primary branch")
63-
6461
options := setupOptions(t, "base-ocp-upg", standardExampleTerraformDir)
6562

6663
output, err := options.RunTestUpgrade()

0 commit comments

Comments
 (0)