MCPcopy Create free account
hub / github.com/apache/fory / run_windows_java21

Function run_windows_java21

ci/tasks/java.py:275–291  ·  view source on GitHub ↗

Run Java 21 tests on Windows.

()

Source from the content-addressed store, hash-verified

273
274
275def run_windows_java21():
276 """Run Java 21 tests on Windows."""
277 logging.info("Executing fory java tests on Windows with Java 21")
278 common.exec_cmd("java -version")
279
280 common.cd_project_subdir("java")
281 # Use double quotes for Windows compatibility
282 if common.is_windows():
283 common.exec_cmd(
284 'mvn -T10 --batch-mode --no-transfer-progress test install -pl "!fory-testsuite"'
285 )
286 else:
287 common.exec_cmd(
288 "mvn -T10 --batch-mode --no-transfer-progress test install -pl '!fory-testsuite'"
289 )
290
291 logging.info("Executing fory java tests succeeds")
292
293
294def run_integration_tests():

Callers 1

runFunction · 0.85

Calls 1

infoMethod · 0.65

Tested by

no test coverage detected