Skip to content
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

Test Fixes: Post 3.0 #16264

Merged
merged 1 commit into from
Apr 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 9 additions & 0 deletions .teamcity/components/settings.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,21 @@ var serviceTestConfigurationOverrides = mapOf(
// these tests all conflict with one another
"authorization" to testConfiguration(parallelism = 1),

// Server is only available in certain locations
"analysisservices" to testConfiguration(locationOverride = LocationConfiguration("westus", "northeurope", "southcentralus", true)),

// HCICluster is only available in certain locations
"azurestackhci" to testConfiguration(locationOverride = LocationConfiguration("australiaeast", "eastus", "westeurope", true)),

//Blueprints are constrained on the number of targets available - these execute quickly, so can be serialised
"blueprints" to testConfiguration(parallelism = 1),

// "cognitive" is expensive - Monday, Wednesday, Friday
"cognitive" to testConfiguration(daysOfWeek = "2,4,6"),

// Cosmos is only available in certain locations
"cosmos" to testConfiguration(locationOverride = LocationConfiguration("westus", "northeurope", "southcentralus", true)),

// The AKS API has a low rate limit
"containers" to testConfiguration(parallelism = 5),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,7 @@ func resourceKubernetesCluster() *pluginsdk.Resource {
Type: pluginsdk.TypeList,
Optional: true,
ForceNew: true,
Computed: true,
Elem: &pluginsdk.Schema{
Type: pluginsdk.TypeString,
ValidateFunc: validation.StringInSlice([]string{
Expand Down