Skip to content

Commit b1a62fc

Browse files
committed
Move all integration tests into a separate directory
There are too many of them at this point to keep them in the root.
1 parent 4117fea commit b1a62fc

20 files changed

+6
-6
lines changed

settings.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ include(":core")
2020
project(":core").name = "kotlinx-datetime"
2121
include(":timezones/full")
2222
project(":timezones/full").name = "kotlinx-datetime-zoneinfo"
23-
include(":serialization")
24-
project(":serialization").name = "kotlinx-datetime-serialization"
25-
include(":js-without-timezones")
26-
project(":js-without-timezones").name = "kotlinx-datetime-js-test-without-timezones"
27-
include(":jpms-test")
28-
project(":jpms-test").name = "kotlinx-datetime-test-with-jpms"
23+
include(":integration-testing/serialization")
24+
project(":integration-testing/serialization").name = "kotlinx-datetime-serialization"
25+
include(":integration-testing/js-without-timezones")
26+
project(":integration-testing/js-without-timezones").name = "kotlinx-datetime-js-test-without-timezones"
27+
include(":integration-testing/jpms-test")
28+
project(":integration-testing/jpms-test").name = "kotlinx-datetime-test-with-jpms"
2929
include(":benchmarks")

0 commit comments

Comments
 (0)