Skip to content

Commit

Permalink
Merge pull request #6 from gruntwork-io/tests-update
Browse files Browse the repository at this point in the history
Usage of Parallel() in tests
  • Loading branch information
denis256 authored Jun 27, 2024
2 parents a2c33da + 731cb20 commit 4561b99
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ func (m *TestEngineServer) Shutdown(req *proto.ShutdownRequest, stream proto.Eng
}

func TestGRPCServer(t *testing.T) {
t.Parallel()
mockServer := &TestEngineServer{}
grpcEngine := &engine.TerragruntGRPCEngine{Impl: mockServer}
s := grpc.NewServer()
Expand All @@ -50,6 +51,7 @@ func TestGRPCServer(t *testing.T) {
}

func TestGRPCClient(t *testing.T) {
t.Parallel()
mockServer := &TestEngineServer{}
grpcEngine := &engine.TerragruntGRPCEngine{Impl: mockServer}
server := grpc.NewServer()
Expand Down

0 comments on commit 4561b99

Please sign in to comment.