Skip to content

Commit 180a31e

Browse files
committed
fixed notebook sample tests to work both with %use dataframe and %use kandy-geo
1 parent b465246 commit 180a31e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

dataframe-jupyter/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ plugins {
1414
group = "org.jetbrains.kotlinx"
1515

1616
repositories {
17+
// geo repository should come before Maven Central
18+
maven("https://repo.osgeo.org/repository/release")
1719
mavenCentral()
1820
}
1921

@@ -31,6 +33,9 @@ dependencies {
3133
testImplementation(projects.dataframeOpenapiGenerator)
3234
testImplementation(projects.dataframeOpenapi)
3335

36+
testImplementation(projects.dataframeJupyter)
37+
testImplementation(projects.dataframeGeoJupyter)
38+
3439
testImplementation(libs.kotestAssertions) {
3540
exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk8")
3641
}

dataframe-jupyter/src/test/kotlin/org/jetbrains/kotlinx/dataframe/jupyter/DataFrameJupyterTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import org.jetbrains.kotlinx.jupyter.testkit.ReplProvider
77
abstract class DataFrameJupyterTest :
88
JupyterReplTestCase(
99
ReplProvider.forLibrariesTesting(
10-
libraries = setOf("dataframe", "dataframe-jupyter"),
10+
libraries = setOf("dataframe", "kandy-geo"),
1111
extraCompilerArguments = listOf(
1212
"-Xopt-in=kotlin.time.ExperimentalTime",
1313
"-Xopt-in=kotlin.uuid.ExperimentalUuidApi",

0 commit comments

Comments
 (0)