Skip to content

Commit 1332318

Browse files
Saloedclaude
andcommitted
TEMP: log test starts to identify the exploding test
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent d0b9c45 commit 1332318

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/build-and-run-tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,14 @@ jobs:
6363
) &
6464
DIAG=$!
6565
trap 'kill $DIAG 2>/dev/null || true' EXIT
66-
./gradlew build --no-daemon --continue -PrunBenchmarksBasedTests=false
66+
cat > /tmp/testlog.init.gradle <<'INIT'
67+
allprojects {
68+
tasks.withType(Test).configureEach {
69+
testLogging { events "started", "failed" }
70+
}
71+
}
72+
INIT
73+
./gradlew build --no-daemon --continue -PrunBenchmarksBasedTests=false -I /tmp/testlog.init.gradle
6774
6875
- name: Build and run tests
6976
if: runner.os != 'Linux'

0 commit comments

Comments
 (0)