(test_type_dir)
| 274 | logs.append(f"|---- ❌ Kotlin process timed out after {java_timeout:g}s") |
| 275 | ci_diagnostic(logs, output) |
| 276 | return False |
| 277 | return check_results(proc, test, release, logs) |
| 278 | |
| 279 | if test.kind != "integration": |
| 280 | logs.append("|--- 🤖 Running with Java...") |
| 281 | proc, diagnostics = run_java_command( |
| 282 | [ |
| 283 | "java", |
| 284 | "-cp", |
| 285 | str(jar), |
| 286 | f"{test.artifact_name}.{test.artifact_name}", |
| 287 | *java_arguments, |
| 288 | ], |