Code coverage
DETAILS: Tier: Free, Premium, Ultimate Offering: GitLab.com, Self-managed, GitLab Dedicated
Use code coverage to provide insights on what source code is being validated by a test suite. Code coverage is one of many test metrics that can determine software performance and quality.
View Code Coverage results
Code Coverage results are shown in:
- Merge request widget
- Project repository analytics
- Group repository analytics
- Repository badge
For more information on test coverage visualization in the file diff of the merge request, see Test Coverage Visualization.
View code coverage results in the merge request
If you use test coverage in your code, you can use a regular expression to find coverage results in the job log. You can then include these results in the merge request.
If the pipeline succeeds, the coverage is shown in the merge request widget and in the jobs table. If multiple jobs in the pipeline have coverage reports, they are averaged.
coverage
keyword
Add test coverage results using You can display test coverage results in a merge request by adding the
coverage
keyword to your project's .gitlab-ci.yml
file.
To aggregate multiple test coverage values:
- For each job you want to include in the aggregate value,
add the
coverage
keyword followed by a regular expression.
Test coverage examples
The following table lists sample regex patterns for many common test coverage tools. If the tooling has changed after these samples were created, or if the tooling was customized, the regex might not work. Test the regex carefully to make sure it correctly finds the coverage in the tool's output:
Name | Language | Command | Example |
---|---|---|---|
Simplecov | Ruby | None | /\(\d+.\d+\%\) covered/ |
pytest-cov | Python | None | `/TOTAL.*? (100(?:.0+)?% |
Scoverage | Scala | None | /(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/ |
pest | PHP | pest --coverage --colors=never |
/Statement coverage[A-Za-z\.*]\s*:\s*([^%]+)/ |
phpunit | PHP | phpunit --coverage-text --colors=never |
/^\s*Lines:\s*\d+.\d+\%/ |
gcovr | C/C++ | None | /^TOTAL.*\s+(\d+\%)$/ |
tap | NodeJs | tap --coverage-report=text-summary |
/^Statements\s*:\s*([^%]+)/ |
nyc | NodeJs | nyc npm test |
/All files[^|]*|[^|]*\s+([\d\.]+)/ |
jest | NodeJs | jest --ci --coverage |
/All files[^|]*|[^|]*\s+([\d\.]+)/ |
excoveralls | Elixir | None | /\[TOTAL\]\s+(\d+\.\d+)%/ |
mix | Elixir | mix test --cover |
/\d+.\d+\%\s+|\s+Total/ |
JaCoCo | Java/Kotlin | None | /Total.*?([0-9]{1,3})%/ |
go test | Go | go test -cover |
/coverage: \d+.\d+% of statements/ |
OpenCover | .NET | None | /(Visited Points).*\((.*)\)/ |
dotnet test | .NET | dotnet test |
/Total\s*|\s*(\d+(?:\.\d+)?)/ |
tarpaulin | Rust | None | /^\d+.\d+% coverage/ |
Pester | PowerShell | None | /Covered (\d+\.\d+%)/ |
View history of project code coverage
To see the evolution of your project code coverage over time, you can view a graph or download a CSV file with this data.
- On the left sidebar, select Search or go to and find your project.
- Select Analyze > Repository analytics.
The historic data for each job is listed in the dropdown list above the graph.
To view a CSV file of the data, select Download raw data (.csv
).
View history of group code coverage
DETAILS: Tier: Premium, Ultimate Offering: GitLab.com, Self-managed, GitLab Dedicated
To see the all the project's code coverage under a group over time, you can find view group repository analytics.
Pipeline badges
You can use pipeline badges to indicate the pipeline status and test coverage of your projects. These badges are determined by the latest successful pipeline.
Coverage check approval rule
DETAILS: Tier: Premium, Ultimate Offering: GitLab.com, Self-managed, GitLab Dedicated
You can require specific users or a group to approve merge requests that would reduce the project's test coverage.
To add a Coverage-Check
approval rule:
- Add test coverage results to a merge request.
- Go to your project and select Settings > Merge requests.
- Under Merge request approvals, select Enable next to the
Coverage-Check
approval rule. - Select the Target branch.
- Set the number of Approvals required to greater than zero.
- Select the users or groups to provide approval.
- Select Add approval rule.
Troubleshooting
Remove color codes from code coverage
Some test coverage tools output with ANSI color codes that aren't parsed correctly by the regular expression. This causes coverage parsing to fail.
Some coverage tools do not provide an option to disable color codes in the output. If so, pipe the output of the coverage tool through a one-line script that strips the color codes.
For example:
lein cloverage | perl -pe 's/\e\[?.*?[\@-~]//g'