Skip to content

Commit

Permalink
makefile: remove parallelism / atomic mode from codecov target
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexCuse committed Oct 31, 2023
1 parent 5a86b56 commit b6134e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test_stress:
STRESS_TEST_COUNT=4 go test -tags=stress -parallel 30 -timeout=45m ./pkg/nats...

test_codecov:
go test -coverprofile=coverage.out -covermode=atomic ./pkg/nats... -short
go test -parallel 1 -coverprofile=coverage.out ./pkg/nats... -short

test_reconnect:
go test -tags=reconnect ./pkg/nats...
Expand All @@ -41,7 +41,7 @@ jetstream_test_reconnect:
go test -tags=reconnect ./pkg/jetstream...

jetstream_test_codecov:
go test -coverprofile=coverage.out -covermode=atomic ./pkg/jetstream... -short
go test -parallel 1 -coverprofile=coverage.out ./pkg/jetstream... -short

BENCHCNT := 1

Expand Down

0 comments on commit b6134e1

Please sign in to comment.