Skip to content

FrancoisPoinsot/wercker-step-goveralls

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wercker goveralls step

wercker status

This wercker step runs goveralls to extract code coverage from your project and uploads it to Coveralls.

It also exclude the "vendor" directory from the "tests" scanned directories.

It also include only tests files that have the "unit" tag.

Usage

box: google/golang
build:
  steps:
    - setup-go-workspace
    - golint
    - script:
        name: go build
        code: |
          go build ./...
    - script:
        name: go test
        code: |
          go test ./...
    - ricardo-ch/goveralls:
        token: $COVERALLS_TOKEN

Properties

Name Type Default Description
token string Your Coveralls repository token.

Changelog

1.0.0

  • Exclude "vendor" folder from scanned directories
  • Filter test files that have "unit" tag
  • Fork repo

About

Custom wercker step for uploading Go coverage to Coveralls.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%