Check above links for code coverage report. Click on every class and check which lines or methods are not covered, write tests for those lines.
If you write unit test and want to run it, do
./gradlew test
that will execute changes.
If you want to check how coverage changes after adding your test, you need to create a new PR with your changes, mark it as "Draft" and let CI run. Part of the CI execution is generation of new coverage report with your changes.
Improve test coverage for repo, all packages should be above 80%.
Currently report is showing following packages that are below 80%:
Steps to repro:
that will execute changes. If you want to check how coverage changes after adding your test, you need to create a new PR with your changes, mark it as "Draft" and let CI run. Part of the CI execution is generation of new coverage report with your changes.
Some tips: