roveralls alternatives and similar packages
Based on the "Continuous Integration" category.
Alternatively, view roveralls alternatives based on common mentions on social networks and blogs.
-
drone
Gitness is an Open Source developer platform with Source Control management, Continuous Integration and Continuous Delivery. [Moved to: https://github.com/harness/gitness] -
CDS
Enterprise-Grade Continuous Delivery & DevOps Automation Open Source Platform -
woodpecker
Woodpecker is a simple CI engine with great extensibility. -
Buildkite
The Buildkite Agent is an open-source toolkit written in Go for securely running build jobs on any device or network -
goveralls
Go integration for Coveralls.io continuous code coverage tracking system. -
overalls
:jeans:Multi-Package go project coverprofile for tools like goveralls -
Template for GitHub Apps built with Golang
Template for building GitHub Apps in Go. -
gomason
A tool for testing, building, signing, and publishing binaries. -
go-test-coverage
go-test-coverage is tool and github action which reports issues when test coverage is below set threshold
Clean code begins in your IDE with SonarLint
Do you think we are missing an alternative of roveralls or a related project?
README
roveralls
A Go recursive coverage testing tool.
roveralls runs coverage tests on a package and all its sub-packages. The coverage profile is output as a single file called 'roveralls.coverprofile' for use by tools such as goveralls.
This tool was inspired by github.com/go-playground/overalls written by Dean Karn, but I found it difficult to test and brittle so I decided to rewrite it from scratch. Thanks for the inspiration Dean.
Usage
At its simplest, to test the current package and sub-packages and create a roveralls.coverprofile
file in the directory that you run the command:
$ roveralls
To see the help for the command:
$ roveralls -help
roveralls runs coverage tests on a package and all its sub-packages. The
coverage profile is output as a single file called 'roveralls.coverprofile'
for use by tools such as goveralls.
Usage of roveralls:
-covermode count,set,atomic
Mode to run when testing files: count,set,atomic (default "count")
-help
Display this help
-ignore dir1,dir2,...
Comma separated list of directory names to ignore: dir1,dir2,... (default ".git,vendor")
-short
Tell long-running tests to shorten their run time
-v Verbose output
View Output in a Web Browser
To view the code coverage for you packge in a browser:
$ go tool cover -html=roveralls.coverprofile
Use with goveralls
The output of roveralls
is the same as the the standard go test -coverprofile=profile.coverprofile
but with multiple files tested in the output file. This can therefore be used with tools such as goveralls
.
If you wanted to call it from a .travis.yml
script you could use:
- $HOME/gopath/bin/roveralls
- $HOME/gopath/bin/goveralls -coverprofile=roveralls.coverprofile -service=travis-ci
Contributing
If you want to improve this program make a pull request to the repo on github. Please put any pull requests in a separate branch to ease integration and add a test to prove that it works. If you find a bug, please report it at the project's issues tracker also on github.
Licence
Copyright (C) 2016, Lawrence Woodman [email protected]
This software is licensed under an MIT Licence. Please see the file, LICENCE.md, for details.
*Note that all licence references and agreements mentioned in the roveralls README section above
are relevant to that project's source code only.