Skip to content

Commit

Permalink
removing race testing from travis build - travis doesn't like it
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-schroeder committed Oct 23, 2016
1 parent abf6254 commit 30b8d79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ install:
- make deps

script:
- make test
- make test-no-race
- make compatibility
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,10 @@ test: build
@go test -v ./check
@go test -race ./check

test-no-race: build
@go fmt . ./check
@go vet . ./check
@go test -v ./check

compatibility: build
@go run compatibility/test.go -base-dir "./compatibility" -health-check "./kafka-health-check"

0 comments on commit 30b8d79

Please sign in to comment.