Implementing Code coverage in Azure DevOps and GitHub Actions
Code coverage is a crucial metric to ensure test completeness. Here’s how to implement it in Azure DevOps and GitHub Actions.
1. Azure DevOps Implementation
Set Up Test and Coverage Tools
Choose the appropriate tools based on your language:
.NET:
Coverlet
, integrated withdotnet test
.Java:
JaCoCo
.Python:
pytest-cov
.JavaScript/TypeScript:
nyc
(Istanbul).
Configure Azure Pipelines
Define your pipeline using YAML and ensure test and coverage tools are included.
Example Pipeline Configuration for .NET:
xxxxxxxxxx
231trigger
2 main
3pool
4 vmImage'windows-latest'
5variables
6 buildConfiguration'Release'
7stages
8stage Build
9 displayName"Build and Test"
10 jobs
11job BuildAndTest
12 displayName"Build and Run Tests"
13 steps
14task UseDotNet@2
15 inputs
16 packageType sdk
17 version'6.x'
18script dotnet restore
19 displayName"Restore NuGet Packages"
20script dotnet build --configuration $(buildConfiguration)
21 displayName"Build Solution"
22script dotnet test --configuration $(buildConfiguration) --collect"Code Coverage" --results-directory $(System.DefaultWorkingDirectory)/TestResults
23 displayName"Run Tests with Coverage"
Add Code Coverage Tasks
Publish code coverage results to Azure DevOps for visualization.
Example (JaCoCo for Java):
xxxxxxxxxx
51task PublishCodeCoverageResults@1
2 inputs
3 codeCoverageTool'JaCoCo'
4 summaryFileLocation'$(System.DefaultWorkingDirectory)/TestResults/Coverage/coverage.xml'
5 reportDirectory'$(System.DefaultWorkingDirectory)/TestResults/CoverageReport'
Example (Coverlet for .NET):
xxxxxxxxxx
41task PublishCodeCoverageResults@1
2 inputs
3 codeCoverageTool'cobertura'
4 summaryFileLocation'$(System.DefaultWorkingDirectory)/TestResults/coverage.cobertura.xml'
Publish Code Coverage Reports
Ensure test results and coverage are published to the pipeline summary.
xxxxxxxxxx
51task PublishTestResults@2
2 inputs
3 testResultsFormat'TRX'
4 testResultsFiles'**/.trx'
5 mergeTestResultstrue
2. GitHub Actions Implementation
Set Up Test and Coverage Tools
Install and configure tools for your language in the actions
workflow:
.NET:
Coverlet
.Java:
JaCoCo
.Python:
pytest-cov
.JavaScript/TypeScript:
nyc
(Istanbul).
Create GitHub Actions Workflow
Define the workflow in a .github/workflows/ci.yml
file.
Configure Workflow Steps
Example for a .NET application:
xxxxxxxxxx
291name CI
2on
3 push
4 branches
5 main
6 pull_request
7 branches
8 main
9jobs
10 build-and-test
11 runs-on ubuntu-latest
12 steps
13name Checkout code
14 uses actions/checkout@v3
15name Setup .NET
16 uses actions/setup-dotnet@v3
17 with
18 dotnet-version6.0
19name Install dependencies
20 run dotnet restore
21name Build
22 run dotnet build --configuration Release
23name Run Tests with Code Coverage
24 run dotnet test --configuration Release --collect"Code Coverage" --results-directory ./TestResults
25name Upload Coverage Results
26 uses actions/upload-artifact@v3
27 with
28 name code-coverage
29 path ./TestResults
Add Coverage Report Publishing
Use a tool like or to publish the coverage report.
Example for Codecov:
Add Codecov to your workflow:
xxxxxxxxxx
51name Upload to Codecov
2uses codecov/codecov-action@v3
3with
4files ./TestResults/coverage.cobertura.xml
5token $ secrets.CODECOV_TOKEN
Retrieve the token from the Codecov dashboard for your repository and store it as a GitHub secret.
Summary
Feature | Azure DevOps | GitHub Actions |
---|---|---|
Code Coverage Tool | Coverlet, JaCoCo, pytest-cov, nyc | Coverlet, JaCoCo, pytest-cov, nyc |
Test Execution | dotnet test , pytest , npm test | dotnet test , pytest , npm test |
Coverage Report | PublishCodeCoverageResults Task | Codecov/Custom report integration |
Result Visualization | Azure DevOps Pipeline Summary | Codecov dashboard or GitHub Artifacts |
Leave a Reply