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

Added coverage and timeout options to test build step #196

Merged
merged 2 commits into from
Feb 8, 2019
Merged
Changes from 1 commit
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
Next Next commit
Added coverage and timeout options to test build step
  • Loading branch information
Steve van Loben Sels committed Feb 6, 2019
commit bbad5b381cece1d93173b99de4d18d14553e5c49
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- setup_remote_docker: { reusable: true, docker_layer_caching: true }
- run: go get -v -t ./...
- run: go vet ./...
- run: go test -v -race ./...
- run: go test -v -race -cover -timeout 5m ./...
kafka-011:
working_directory: /go/src/github.com/segmentio/kafka-go
environment:
Expand All @@ -47,7 +47,7 @@ jobs:
- setup_remote_docker: { reusable: true, docker_layer_caching: true }
- run: go get -v -t ./...
- run: go vet ./...
- run: go test -v -race ./...
- run: go test -v -race -cover -timeout 5m ./...
kafka-111:
working_directory: /go/src/github.com/segmentio/kafka-go
environment:
Expand All @@ -71,7 +71,7 @@ jobs:
- setup_remote_docker: { reusable: true, docker_layer_caching: true }
- run: go get -v -t ./...
- run: go vet ./...
- run: go test -v -race ./...
- run: go test -v -race -cover -timeout 5m ./...
kafka-210:
working_directory: /go/src/github.com/segmentio/kafka-go
environment:
Expand All @@ -95,7 +95,7 @@ jobs:
- setup_remote_docker: { reusable: true, docker_layer_caching: true }
- run: go get -v -t ./...
- run: go vet ./...
- run: go test -v -race ./...
- run: go test -v -race -cover -timeout 5m ./...
workflows:
version: 2
run:
Expand Down