-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Design stable API #19
Comments
Some things to consider IMO include:
|
As far as I am aware, discussions cover the use case of excluding test classes beyond what is excluded by default (the I'd like to see the opposite configuration option: Make it possible to include the |
I use a very simple way to declare integrationTests in my Gradle build using the
When switching from jacoco plugin straight to kover it measures uncovered lines in my integration test suite... not good. How can I define manually what is a test suite and what is code to measure coverage of?? |
In version
0.2.2
all configuration takes place in the Kover extension of the test task.It is necessary to discuss the design and make a decision to leave this method of configuration or to take the generation of the report and verification into separate tasks.
If the tasks will be separated, it should consider the option of creating your own tasks of report generation or verification and connecting them to arbitrary tasks.
Another feature when dividing tasks is the creation of one report (or verification) for several test tasks that are run simultaneously.
The text was updated successfully, but these errors were encountered: