Helper used to delegate execution within worker threads.
(test_dir: str, test_type: str, release_mode: bool)
| 236 | kotlin_jar.parent.mkdir(parents=True, exist_ok=True) |
| 237 | command = [ |
| 238 | str(kotlinc), |
| 239 | "-jvm-target", |
| 240 | "1.8", |
| 241 | "-classpath", |
| 242 | str(jar), |
| 243 | "-include-runtime", |
| 244 | "-d", |
| 245 | str(kotlin_jar), |
| 246 | *(str(path) for path in kotlin_files), |
| 247 | ] |
| 248 | if os.name == "nt" and kotlinc.suffix.lower() == ".bat": |
nothing calls this directly
no test coverage detected