File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,6 @@ testServerPort=8085
1010
1111gradleVersion =9.2.0
1212
13- org.gradle.jvmargs =-Xmx4G
13+ org.gradle.jvmargs =-Xmx4G
14+
15+ skipDbIntegrationTests =false
Original file line number Diff line number Diff line change @@ -6,6 +6,24 @@ plugins {
66 alias(libs.plugins.publisher)
77}
88
9+ subprojects {
10+ // Allow skipping DB integration tests via -PskipDbIntegrationTests=true
11+ val skipDbIntegrationTests =
12+ providers
13+ .gradleProperty(" skipDbIntegrationTests" )
14+ .orNull
15+ ?.toBoolean() == true
16+
17+ if (skipDbIntegrationTests) {
18+ tasks.withType<Test > {
19+
20+ // DB integration tests are placed under this package
21+ exclude(" org/jetbrains/kotlinx/jupyter/database/test/integration/**" )
22+ failOnNoDiscoveredTests = false
23+ }
24+ }
25+ }
26+
927kotlinPublications {
1028 pom {
1129 githubRepo(" Kotlin" , " kotlin-notebook-libraries" )
You can’t perform that action at this time.
0 commit comments