-
```
$ py.test --cov=
-
### Description
As a developer, I want to have high test coverage of the command line interface, so that I can refactor the code with confidence.
### Acceptance Criteria
Unittest coverage of …
-
Description
=========
Set up GitHub Actions to use Ci/CD in MakiePlotting.
Define branch rules and other restirictions for the repo.
Definition of Done
==============
- [ ] All ACs fulfilled
- [ ]…
pb866 updated
6 months ago
-
nyc is not reporting code coverage results after possibly related nodejs change https://github.com/nodejs/node/commit/15bced0bde
## Link to bug demonstration repository
https://github.com/jere…
-
eg. https://github.com/zopefoundation/zc.zodbrecipes
In order to get correct coverage, @mgedmin pointed me to
https://github.com/buildout/buildout/blob/0185dc6a87f417160378547c776fb6da0c016e88/src…
-
Consider the code below.
```js
const x = 'asdf'
const fn = y => {
if (typeof y !== 'object') {
y = 'yup'
}
console.log(y)
}
fn(x)
```
The code branches on the if statement and…
-
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.
## Open
These updates have all …
-
diff-cover report:
Total: 197 lines.
Missing: 104 lines.
Coverage: 47%.
but git review is +567 -23
exec: diff-cover coverage.xml --compare-branch origin/master --html-report report.html
-
What about implementing a code coverage badge to the README, so that everyone can see how much code is covered by the tests?
Codecov for example provides a Github action, so we could simply generat…
-
After executing below command, HTML report is only having line and branch coverage.
ceedling gcov:all utils:gcov
Is there any way to add function coverage in HTML report.
Thanks in advance.