From c141b4add9189c12768777dd8fcd4d2c1c1f626b Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Sat, 1 Mar 2025 12:40:47 +0100 Subject: [PATCH] fixed mistake due to copy-paste --- clone_repos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clone_repos.py b/clone_repos.py index 0e4a901..a79a7e5 100644 --- a/clone_repos.py +++ b/clone_repos.py @@ -146,9 +146,9 @@ def compile_repo(build_file: str, container, updates: dict) -> bool: def test_repo(build_file: str, container, updates: dict) -> bool: if build_file.endswith("pom.xml") or build_file.endswith("build.xml"): - test_cmd = "mvn clean compile" + test_cmd = "mvn test" elif build_file.endswith("build.gradle"): - test_cmd = "gradle compileJava" + test_cmd = "gradle test" else: updates["error_msg"] = "Unsupported build system for testing: " + build_file return False