File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/test/kotlin/org/jetbrains/kotlinx/dataframe/jupyter Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ plugins {
14
14
group = " org.jetbrains.kotlinx"
15
15
16
16
repositories {
17
+ // geo repository should come before Maven Central
18
+ maven(" https://repo.osgeo.org/repository/release" )
17
19
mavenCentral()
18
20
}
19
21
@@ -31,6 +33,9 @@ dependencies {
31
33
testImplementation(projects.dataframeOpenapiGenerator)
32
34
testImplementation(projects.dataframeOpenapi)
33
35
36
+ testImplementation(projects.dataframeJupyter)
37
+ testImplementation(projects.dataframeGeoJupyter)
38
+
34
39
testImplementation(libs.kotestAssertions) {
35
40
exclude(" org.jetbrains.kotlin" , " kotlin-stdlib-jdk8" )
36
41
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import org.jetbrains.kotlinx.jupyter.testkit.ReplProvider
7
7
abstract class DataFrameJupyterTest :
8
8
JupyterReplTestCase (
9
9
ReplProvider .forLibrariesTesting(
10
- libraries = setOf (" dataframe" , " dataframe-jupyter " ),
10
+ libraries = setOf (" dataframe" , " kandy-geo " ),
11
11
extraCompilerArguments = listOf (
12
12
" -Xopt-in=kotlin.time.ExperimentalTime" ,
13
13
" -Xopt-in=kotlin.uuid.ExperimentalUuidApi" ,
You can’t perform that action at this time.
0 commit comments