Coveralls coverage reports

How to forward coverage reports to Coveralls

Coveralls is a web service that allows users to track the code coverage of their application over time in order to optimize the effectiveness of their unit tests. This section details how coverage reports can be generated and forwarded to Coveralls with every Codefresh build.

Analysis reports displayed within Coveralls dashboard:

Coveralls UI Analysis reports

Prerequisites for using Coveralls

Coveralls supports 22 different language integrations. Each example provided in the official documentation suggests several coverage report tools that can be used in combination with Coveralls.

You could try it out by cloning our node example application that utilises jest.

Prepare your repository

If you are using your own application as an example, you have to make a few modifications to the repository. Please have a look at the Coveralls example section for other languages.

First, install Coveralls in your project:

npm install coveralls --save-dev

Coveralls requires a script that takes standard input and sends it to coveralls.io to report your code coverage. Depending on the framework that you are using, you will have to add a different script to your application.

Any coverage reports can be forwarded that are within a lcov data format (including mocha’s LCOV reporter). For this, we are going to set-up a “bin” folder, and within the folder a coveralls.js file that contains the following content:

#!/usr/bin/env node
 
'use strict';
 
const { handleInput } = require('..');
 
process.stdin.resume();
process.stdin.setEncoding('utf8');
 
let input = '';
 
process.stdin.on('data', chunk => {
 input += chunk;
});
 
process.stdin.on('end', () => {
 handleInput(input, err => {
   if (err) {
     throw err;
   }
 });
});

Create a Coveralls account

Once you sign-up to Coveralls, you can add a new repository. The UI will then provide you with an access token to the repository. Take note of the token since it will be required in the next sections.

Coveralls repository

Codefresh pipeline

If the project you want to use Coveralls in does not have a pipeline, create a new pipeline.

Create Coveralls Pipeline

Once you ’create’ the pipeline, a standard codefresh.yml file is generated with three steps:

  • The first step will clone your repository;
  • The second step will both, build and push your repository to the container registry that you have connected with Codefresh;
  • And the third step currently does not do much. In the next section, we will modify the testing step.

Testing step

The testing step requires three different environment variables to connect to Coveralls:

  • export COVERALLS_SERVICE_NAME="codefresh"
  • export COVERALLS_GIT_BRANCH="insert the branch that you will be using with your application"
  • export COVERALLS_REPO_TOKEN="insert the secret repo token from coveralls.io"
   test:
    title: "Running test"
    type: "freestyle" # Run any command
    image: "node:15.2" # The image in which command will be executed
    working_directory: "${{clone}}" # Running command where code cloned
    commands:
      - "export COVERALLS_SERVICE_NAME=${{COVERALLS_SERVICE_NAME}}"
      - "export COVERALLS_GIT_BRANCH=${{CF_BRANCH}}"
      - "export COVERALLS_REPO_TOKEN=${{COVERALLS_REPO_TOKEN}}"
      - "npm install --save-dev jest"
      - "npm run test"
    stage: "test"

We specify several variables within this step. Those, which start with ’CF’ are Codefresh-specific steps and the value is automatically provided by Codefresh once you run the pipeline. Our entire codefresh.yml will look as such:

version: "1.0"
stages:
  - "clone"
  - "build"
  - "test"

steps:
  clone:
    title: "Cloning repository"
    type: "git-clone"
    repo: "anais-codefresh/coveralls-sample-app"
    # CF_BRANCH value is auto set when pipeline is triggered
    # Learn more at codefresh.io/docs/docs/pipelines/variables/
    revision: "${{CF_BRANCH}}"
    git: "github"
    stage: "clone"

  build:
    title: "Building Docker image"
    type: "build"
    image_name: "anaisurlichs/coveralls-sample-app"
    working_directory: "${{clone}}"
    tag: "${{CF_BRANCH_TAG_NORMALIZED}}"
    dockerfile: "Dockerfile"
    stage: "build"
    registry: "dockerhub"
    
  test:
    title: "Running test"
    type: "freestyle" # Run any command
    image: "node:15.2" # The image in which command will be executed
    working_directory: "${{clone}}" # Running command where code cloned
    commands:
      - "export COVERALLS_SERVICE_NAME=${{COVERALLS_SERVICE_NAME}}"
      - "export COVERALLS_GIT_BRANCH=${{CF_BRANCH}}"
      - "export COVERALLS_REPO_TOKEN=${{COVERALLS_REPO_TOKEN}}"
      - "npm install --save-dev jest"
      - "npm run test"
    stage: "test"

Once you run the pipeline the steps will create the coverage report and forward it to Coveralls.

Pipeline with Coveralls step

View reports

You can view the updated coverage reports within Coveralls UI every time you make a commit and/or run the Codefresh pipeline directly.

Coveralls UI Analysis reports

You can access further information on the coverage report by opening the link to the file displayed in the table.

Coveralls report details

And view a the code coverage of a specific file:

Coveralls report details

CI pipeline examples
Codefresh YAML for pipeline definitions
Steps in pipelines
Unit tests
Integration tests
SonarQube integration