Skip to content

Commit

Permalink
goveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Nov 22, 2015
1 parent 5470795 commit 3313fc0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ after_failure:
- cat ./target/test/report.xml

after_script:
- $HOME/gopath/bin/goveralls -service=travis-ci
- $HOME/gopath/bin/goveralls -covermode=count -coverprofile=target/report/coverage.out -service=travis-ci
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ all: help
test:
@mkdir -p target/test
@mkdir -p target/report
GOPATH=$(GOPATH) go test -coverprofile=target/report/coverage.out -bench=. -race -v ./... | tee >(PATH=$(GOPATH)/bin:$(PATH) go-junit-report > target/test/report.xml); test $${PIPESTATUS[0]} -eq 0
GOPATH=$(GOPATH) go test -covermode=count -coverprofile=target/report/coverage.out -bench=. -race -v ./... | tee >(PATH=$(GOPATH)/bin:$(PATH) go-junit-report > target/test/report.xml); test $${PIPESTATUS[0]} -eq 0

# Format the source code
format:
Expand Down
2 changes: 1 addition & 1 deletion src/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ const appName = "rndpwd"

// Application version
// This is supposed to be automatically populated by the Makefile using the value from the VERSION file
const AppVersion = "1.0.1"
const AppVersion = "1.0.2"

0 comments on commit 3313fc0

Please sign in to comment.