Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 0fa3f05

Browse files
committed
ci: run: Fix skip check
Signed-off-by: John Andersen <johnandersenpdx@gmail.com>
1 parent df88154 commit 0fa3f05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function run_plugin() {
8989
"${PYTHON}" -m coverage report -m
9090

9191
# Fail if any tests were skipped or errored
92-
skipped=$(grep -E '(skipped=.*)' "${check_skips}" | wc -l)
92+
skipped=$(tail -n 1 "${check_skips}" | grep -E '(skipped=.*)' | wc -l)
9393
if [ "$skipped" -ne 0 ]; then
9494
echo "Tests were skipped" >&2
9595
exit 1

0 commit comments

Comments
 (0)