Skip to content

Commit

Permalink
ci: test with Go 1.10
Browse files Browse the repository at this point in the history
Don't use coverage and race detector at the same time which adds
allocations that can cause some tests to fail.
  • Loading branch information
SamWhited committed Feb 18, 2018
1 parent b9660cf commit 59b8dc7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: golang:1.9
image: golang:1.10
pipelines:
default:
- step:
Expand All @@ -11,4 +11,5 @@ pipelines:
- cd "$GOPATH/src/mellium.im/cli"
- dep ensure
- go vet ./...
- go test -race -cover ./...
- go test -race ./...
- go test -cover ./...

0 comments on commit 59b8dc7

Please sign in to comment.