You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the incompatibility of some libraries with Kover instrumentation, errors may occur in the instrumentation of classes that are not related to the project.
There is a need to filter out all classes that are not related to projects.
This can be implemented by performing the tasks of compiling all dependencies strictly before running the tests, finding packages that relate to the application, and transferring these packages to the CommandLineArgumentProvider.
This solution has the following disadvantages:
Kover implicitly add dependencies to the build between compilation Gradle tasks and test tasks
If the compilation task depends on the testing task of another project, and project is specified as a Kover dependency, then a cyclic dependency between tasks appears
The text was updated successfully, but these errors were encountered:
Due to the incompatibility of some libraries with Kover instrumentation, errors may occur in the instrumentation of classes that are not related to the project.
There is a need to filter out all classes that are not related to projects.
This can be implemented by performing the tasks of compiling all dependencies strictly before running the tests, finding packages that relate to the application, and transferring these packages to the
CommandLineArgumentProvider
.This solution has the following disadvantages:
The text was updated successfully, but these errors were encountered: