Skip to content

Commit b7f2e5a

Browse files
authored
Fix scoreboard (#692)
1 parent a27fa9d commit b7f2e5a

File tree

7 files changed

+518
-488
lines changed

7 files changed

+518
-488
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ repos:
4040
hooks:
4141
- id: yamllint
4242

43-
# Shell script linting with shellcheck
44-
- repo: https://github.com/koalaman/shellcheck-precommit
45-
rev: v0.11.0
43+
# Shell script linting with shellcheck (no docker dependency)
44+
- repo: https://github.com/shellcheck-py/shellcheck-py
45+
rev: v0.10.0.1
4646
hooks:
4747
- id: shellcheck
4848
files: \.sh$

modules/runners/src/runners.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ void UnreadMessagesDetector::OnTestEnd(const ::testing::TestInfo & /*test_info*/
4848
}
4949

5050
void WorkerTestFailurePrinter::OnTestEnd(const ::testing::TestInfo &test_info) {
51-
if (test_info.result()->Passed()) {
51+
if (test_info.result()->Passed() || test_info.result()->Skipped()) {
5252
return;
5353
}
5454
PrintProcessRank();

0 commit comments

Comments
 (0)