Skip to content

Commit

Permalink
Ignore internal readme package when doing coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
bufdev committed Feb 28, 2017
1 parent d821d67 commit fa04c49
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ PKGS ?= $(shell glide novendor)
# Many Go tools take file globs or directories as arguments instead of packages.
PKG_FILES ?= *.go zapcore benchmarks buffer testutils internal/bufferpool internal/exit internal/multierror internal/observer

COVERALLS_IGNORE := internal/readme/readme.go

# The linting tools evolve with each Go version, so run them only on the latest
# stable release.
GO_VERSION := $(shell go version | cut -d " " -f 3)
Expand Down Expand Up @@ -63,7 +65,7 @@ test:

.PHONY: coveralls
coveralls:
goveralls -service=travis-ci
goveralls -ignore=$(COVERALLS_IGNORE) -service=travis-ci

.PHONY: bench
BENCH ?= .
Expand Down

0 comments on commit fa04c49

Please sign in to comment.