Skip to content

Commit

Permalink
Set healthcheck test to run in non parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
binary-ho committed Sep 1, 2024
1 parent 15b2748 commit 52289f6
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions test/integration/health_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ var services = []string{
}

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

conn, err := grpc.Dial(
defaultServer.RPCAddr(),
grpc.WithTransportCredentials(insecure.NewCredentials()),
Expand Down Expand Up @@ -81,8 +79,6 @@ func TestRPCHealthCheck(t *testing.T) {
}

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

// check default service
t.Run("Service: default", func(t *testing.T) {
resp, err := http.Get("http://" + defaultServer.RPCAddr() + httphealth.HealthV1ServiceName)
Expand Down Expand Up @@ -129,8 +125,6 @@ func TestHTTPGETHealthCheck(t *testing.T) {
}

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

// check default service
t.Run("Service: default", func(t *testing.T) {
resp, err := http.Head("http://" + defaultServer.RPCAddr() + httphealth.HealthV1ServiceName)
Expand Down

0 comments on commit 52289f6

Please sign in to comment.