diff options
author | Ignat Beresnev <ignat@beresnev.me> | 2022-02-14 10:48:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 10:48:38 +0300 |
commit | a43e11e08d57bd898efc72d6db94ed3d4b01f74f (patch) | |
tree | 5949ef8a2c26c5b65a64ad4b777081860deec6d9 /core/test-api/src/main/kotlin | |
parent | 019cef47f1bf993a7a25ec73e88b1d9da25528eb (diff) | |
download | dokka-a43e11e08d57bd898efc72d6db94ed3d4b01f74f.tar.gz dokka-a43e11e08d57bd898efc72d6db94ed3d4b01f74f.tar.bz2 dokka-a43e11e08d57bd898efc72d6db94ed3d4b01f74f.zip |
Shutdown coroutines dispatchers after each module pass (#2325)
* Update kotlinx.coroutines to 1.6.0
* Shutdown common coroutines dispatchers after each module pass
* Don't finalize coroutines in unit tests
Co-authored-by: Mikhail Zarechenskiy <mikhail.zarechenskiy@jetbrains.com>
Diffstat (limited to 'core/test-api/src/main/kotlin')
-rw-r--r-- | core/test-api/src/main/kotlin/testApi/testRunner/TestDokkaConfigurationBuilder.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/test-api/src/main/kotlin/testApi/testRunner/TestDokkaConfigurationBuilder.kt b/core/test-api/src/main/kotlin/testApi/testRunner/TestDokkaConfigurationBuilder.kt index 804e02ce..623fcc2d 100644 --- a/core/test-api/src/main/kotlin/testApi/testRunner/TestDokkaConfigurationBuilder.kt +++ b/core/test-api/src/main/kotlin/testApi/testRunner/TestDokkaConfigurationBuilder.kt @@ -54,7 +54,8 @@ class TestDokkaConfigurationBuilder { suppressObviousFunctions = suppressObviousFunctions, includes = includes.toSet(), suppressInheritedMembers = suppressInheritedMembers, - delayTemplateSubstitution = delayTemplateSubstitution + delayTemplateSubstitution = delayTemplateSubstitution, + finalizeCoroutines = false ) fun sourceSets(block: SourceSetsBuilder.() -> Unit) { |