Skip to content

Commit

Permalink
Merge d6c22b6 into e0905da
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Sep 11, 2016
2 parents e0905da + d6c22b6 commit 790b408
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: go

go:
- 1.7

install:
- go get golang.org/x/tools/cmd/cover
# - go get github.com/mattn/goveralls
- git clone -b with-merge https://github.com/haya14busa/goveralls $GOPATH/src/github.com/haya14busa/goveralls
- cd $GOPATH/src/github.com/haya14busa/goveralls
- go get -d -v -t ./...
- go install
- cd -

script:
- goveralls -service=travis-ci -v
5 changes: 4 additions & 1 deletion root.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package root

import "github.com/haya14busa/go-cover-multi-pkgs-example/sub"
import (
"github.com/haya14busa/go-cover-multi-pkgs-example/sub"
_ "github.com/haya14busa/vendorpkg"
)

func CoveredFromRoot() {
_ = "ok"
Expand Down
5 changes: 5 additions & 0 deletions vendor/github.com/haya14busa/vendorpkg/vendorpkg.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 790b408

Please sign in to comment.