Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ repos:
hooks:
- id: yamllint

# Shell script linting with shellcheck
- repo: https://github.com/koalaman/shellcheck-precommit
rev: v0.11.0
# Shell script linting with shellcheck (no docker dependency)
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
files: \.sh$
Expand Down
2 changes: 1 addition & 1 deletion modules/runners/src/runners.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void UnreadMessagesDetector::OnTestEnd(const ::testing::TestInfo & /*test_info*/
}

void WorkerTestFailurePrinter::OnTestEnd(const ::testing::TestInfo &test_info) {
if (test_info.result()->Passed()) {
if (test_info.result()->Passed() || test_info.result()->Skipped()) {
return;
}
PrintProcessRank();
Expand Down
Loading
Loading