We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98f7a92 commit 0b81b10Copy full SHA for 0b81b10
build.gradle.kts
@@ -105,11 +105,14 @@ tasks.withType(Test::class) {
105
106
tasks.test {
107
exclude("**/Pnpm*Test*")
108
- if (project.hasProperty("skipIT")) {
109
- exclude("**/*_integTest*")
110
- } else if (project.hasProperty("onlyIT")) {
111
- include("**/*_integTest*")
112
- }
+}
+
+tasks.register<Test>("unitTests") {
+ exclude("**/*_integTest*")
113
114
+tasks.register<Test>("integrationTests") {
115
+ include("**/*_integTest*")
116
}
117
118
tasks.register<Test>("pnpmTests") {
0 commit comments