Skip to content
Snippets Groups Projects
Commit b66f3529 authored by Flavien BRIDAULT's avatar Flavien BRIDAULT
Browse files

feat(ci): add sight-cov utility to download coverage reports

A new CLI is available, `sight-cov.py`. Here is the synopsis:

```shell
usage: sight-cov.py [-h] [-d] [--html] repository merge-request

Download the code coverage report from the latest pipeline of a merge-request.

positional arguments:
  repository     Name of the repository: "sight", "night", or any private repository.
  merge-request  Identifier of the merge-request, same as the one present in its URL.

options:
  -h, --help     show this help message and exit
  -d, --diff     Compute the diff of the coverage with the dev branch.
  --html         Html output instead of text.
```

Here is the output of the utility:

```shell
# ~/dev/sight/sight-git/sight-cov.py -d sight 470 --html 
Downloading merge-request !470 artifacts for project sight...

Coverage report is available at:
file:///home/user/dev/sight/.coverage/sight%21470%23301939/coverage/index.html

Downloading dev branch artifacts for project sight

Diff coverage report is available at:
file:///home/user/dev/sight/.coverage/report.html
```
parent 316558c0
1 merge request!67Resolve "merge request code coverage CLI helper"
Pipeline #307495 passed
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment