diff --git a/build.gradle.kts b/build.gradle.kts index 2e06a62bb..e319a0e3d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -137,7 +137,6 @@ tasks { } test { - exclude("com/magento/idea/magento2plugin/actions/**") //https://github.com/magento/magento2-phpstorm-plugin/issues/2474 useJUnitPlatform() } @@ -239,3 +238,11 @@ fun getChangedFiles(): List { // Return the list of touched files return files } + +kover { + currentProject { + instrumentation { + excludedClasses.add("org.apache.velocity.*") + } + } +}