vickumar1981 / pyeffects

Handle side-effects in Python like a boss. Implements functional types for Either, Option, Try, and Future.
Other
30 stars 6 forks source link

Add coverage report to CI/CD #29

Closed vickumar1981 closed 11 months ago

vickumar1981 commented 11 months ago

The project has recently switched to using Github actions over using Travis CI/CD: https://github.com/vickumar1981/pyeffects/pull/22

We should add the step that generates the coverage report to the CI/CD for github actions and link the README to the test coverage results.

The command to generate a coverage.xml is make coverage, and you can also generate an HTML version using make coverhtml.

The line in the README.md should link to the coverage report for the master branch:

[![Build Status](https://api.travis-ci.com/vickumar1981/pyeffects.svg?branch=master)]
vickumar1981 commented 11 months ago

Addressed by: https://github.com/vickumar1981/pyeffects/pull/30