Skip to content

feat: exposed timeouts inputs in the enterprise DA + add upgrade test for enterprise DA #384

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 7, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
extend timeout
  • Loading branch information
ocofaigh committed Mar 6, 2025
commit 670d27c43194d1fec94ccc239ab38144f5f5cfe1
4 changes: 3 additions & 1 deletion tests/pr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func setupEnterpriseOptions(t *testing.T, prefix string) *testschematic.TestSche
TemplateFolder: enterpriseSolutionTerraformDir,
Tags: []string{"test-schematic"},
DeleteWorkspaceOnFail: false,
WaitJobCompleteMinutes: 180,
WaitJobCompleteMinutes: 360,
})

options.TerraformVars = []testschematic.TestSchematicTerraformVar{
Expand All @@ -105,6 +105,8 @@ func setupEnterpriseOptions(t *testing.T, prefix string) *testschematic.TestSche
{Name: "existing_kms_instance_crn", Value: permanentResources["hpcs_south_crn"], DataType: "string"},
{Name: "access_tags", Value: permanentResources["accessTags"], DataType: "list(string)"},
{Name: "resource_tags", Value: options.Tags, DataType: "list(string)"},
// Update the create timeout as it can take longer than the default (3 hours) when running multiple tests in parallel
{Name: "create_timeout", Value: "5h", DataType: "string"},
}
return options
}
Expand Down