1
0
Fork 0

Document how to get the coverage from the testsuite

This commit is contained in:
jvoisin 2019-02-03 18:33:25 +01:00
parent 8e84ba547a
commit 8b5d0c286c
1 changed files with 7 additions and 0 deletions

View File

@ -42,6 +42,13 @@ doesn't run on [Debian Jessie](https://packages.debian.org/jessie/python3).
$ python3 -m unittest discover -v
```
And if you want to see the coverage:
```bash
$ python3-coverage run --branch -m unittest discover -s tests/
$ python3-coverage report --include -m --include /libmat2/*'
```
# How to use MAT2
```bash