Skip to content

Commit

Permalink
hotfix: Try to remove paralellism from test.
Browse files Browse the repository at this point in the history
The ETCD connection cannot be established
  • Loading branch information
Matovidlo committed Dec 12, 2024
1 parent f6710bb commit 8ca2718
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions test/stream/bridge/keboola/keboola_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ import (
)

// To see details run: TEST_VERBOSE=true go test ./test/stream/bridge/... -v.
func TestKeboolaBridgeWorkflow(t *testing.T) {
t.Parallel()

func TestKeboolaBridgeWorkflow(t *testing.T) { // nolint: paralleltest
ctx, cancel := context.WithTimeout(context.Background(), 300*time.Second)
defer cancel()

Expand Down Expand Up @@ -307,9 +305,7 @@ func TestKeboolaBridgeWorkflow(t *testing.T) {
ts.checkKeboolaTable(t, ctx, 1, 129)
}

func TestNetworkIssuesKeboolaBridgeWorkflow(t *testing.T) {
t.Parallel()

func TestNetworkIssuesKeboolaBridgeWorkflow(t *testing.T) { // nolint: paralleltest
metrics := toxiproxy.NewMetricsContainer(nil)
server := toxiproxy.NewServer(metrics, zerolog.New(os.Stderr))
go server.Listen("localhost:8474")
Expand Down

0 comments on commit 8ca2718

Please sign in to comment.