We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af98f3c commit 4e0f66cCopy full SHA for 4e0f66c
src/test/kotlin/org/jetbrains/kotlinx/jupyter/test/executeTests.kt
@@ -27,6 +27,8 @@ import org.junit.jupiter.api.Assertions.assertEquals
27
import org.junit.jupiter.api.Assertions.assertNull
28
import org.junit.jupiter.api.Test
29
import org.junit.jupiter.api.Timeout
30
+import org.junit.jupiter.api.parallel.Execution
31
+import org.junit.jupiter.api.parallel.ExecutionMode
32
import org.zeromq.ZMQ
33
import java.io.File
34
import java.net.URLClassLoader
@@ -42,6 +44,7 @@ fun JsonObject.string(key: String): String {
42
44
}
43
45
46
@Timeout(100, unit = TimeUnit.SECONDS)
47
+@Execution(ExecutionMode.SAME_THREAD)
48
class ExecuteTests : KernelServerTestsBase() {
49
private var context: ZMQ.Context? = null
50
private var shell: ClientSocket? = null
0 commit comments