You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqCodeTest/model/BuildAndExecuteStatusIcon.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqCodeTest/utils/UTGChatUtil.kt
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ fun constructBuildAndExecutionSummaryText(currentStatus: BuildAndExecuteProgress
48
48
49
49
if (currentStatus >=BuildAndExecuteProgressStatus.FIXING_TEST_CASES|| currentStatus ==BuildAndExecuteProgressStatus.BUILD_FAILED) {
50
50
val buildStatus =if (currentStatus ==BuildAndExecuteProgressStatus.FIXING_TEST_CASES) "Fixing"else"Fixed"
51
-
progressMessages.add("${getFixingTestCasesIcon(currentStatus)}:$buildStatus test failures")
51
+
progressMessages.add("${getFixingTestCasesIcon(currentStatus)}$buildStatus test failures")
52
52
}
53
53
54
54
if (currentStatus >=BuildAndExecuteProgressStatus.PROCESS_TEST_RESULTS) {
@@ -86,17 +86,23 @@ fun runBuildOrTestCommand(
86
86
87
87
// Find the nearest Gradle root directory
88
88
var packageRoot:File?= testFileAbsolutePath.parentFile
89
+
var foundGradleRoot =false
89
90
while (packageRoot !=null&& packageRoot != projectRoot) {
90
91
if (File(packageRoot, "settings.gradle.kts").exists() ||File(packageRoot, "build.gradle.kts").exists() ||
0 commit comments