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

Fix flaky terratests #1340

Merged
merged 1 commit into from
Dec 12, 2023
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
1 change: 0 additions & 1 deletion terratest/test/k8gb_abstract_full_roundrobin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ func abstractTestFullRoundRobin(t *testing.T, n int) {
tags := []string{"eu", "us", "cz", "af", "ru", "ap", "uk", "ca"}
var instances []*utils.Instance

t.Parallel()
const host = "roundrobin-test.cloud.example.com"
const gslbPath = "../examples/roundrobin2.yaml"

Expand Down
1 change: 0 additions & 1 deletion terratest/test/k8gb_failover_playground_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import (
// TestFailoverPlayground is equal to k8gb failover test running on local playground.
// see: https://github.com/k8gb-io/k8gb/blob/master/docs/local.md#failover
func TestFailoverPlayground(t *testing.T) {
t.Parallel()
const host = "playground-failover.cloud.example.com"
const gslbPath = "../examples/failover-playground.yaml"
const euGeoTag = "eu"
Expand Down
1 change: 0 additions & 1 deletion terratest/test/k8gb_full_failover_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import (
)

func TestFullFailover(t *testing.T) {
t.Parallel()
const host = "terratest-failover.cloud.example.com"
const gslbPath = "../examples/failover.yaml"

Expand Down
1 change: 0 additions & 1 deletion terratest/test/k8gb_lifecycle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ import (
// TestK8gbRepeatedlyRecreatedFromIngress creates GSLB, then keeps operator live and than recreates GSLB again from Ingress.
// This is usual lifecycle scenario and we are testing spec strategy has expected values.
func TestK8gbRepeatedlyRecreatedFromIngress(t *testing.T) {
t.Parallel()
// name of ingress and gslb
const name = "test-gslb-failover-simple"

Expand Down
1 change: 0 additions & 1 deletion terratest/test/k8gb_split_failover_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ import (
// Relies on two local clusters deployed by `$make deploy-two-local-clusters`
// Tests expected behavior for https://github.com/k8gb-io/k8gb/issues/67
func TestK8gbSplitFailoverExample(t *testing.T) {
t.Parallel()

// Path to the Kubernetes resource config we will test
kubeResourcePath1, err := filepath.Abs("../examples/failover1.yaml")
Expand Down
Loading