Questions tagged [code-coverage]
Use this tag if a question is about code-coverage, i.e. a percentage of the main code that is covered by the tests
6 questions
1
vote
2
answers
533
views
How to check minimum code coverage in pull request changes?
I want to force the developers to write unit tests for all new code they wrote. The code is written in python. I want to do it in the Jenkins pipeline. And here is a question. Is there any available ...
5
votes
1
answer
1k
views
Is there any way of getting code coverage with molecule?
I'm currently working on testing Ansible roles with Molecule. I have one role with 2 scenarios that are executed in Jenkins but just before that, those are submitted to a SonarQube analysis. So I ...
1
vote
2
answers
107
views
Code coverage versus functional coverage
We are working on a big Java project where we use JUnit tests. Our Jenkins helps us to monitor the code coverage and shows us the progress we make with this.
But there seems to be something lacking ...