We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c302ab8 commit a417128Copy full SHA for a417128
_test/count_ignores.sh
@@ -25,6 +25,12 @@ for e in "$repo"/exercises/*/*; do
25
done
26
want_ignores=$((total_tests - 1))
27
if [ "$total_ignores" != "$want_ignores" ]; then
28
+ # ShellCheck wants us to use printf,
29
+ # but there are no other uses of printf in this repo,
30
+ # so printf hasn't been tested to work yet.
31
+ # (We would not be opposed to using printf and removing this disable;
32
+ # we just haven't tested it to confirm it works yet).
33
+ # shellcheck disable=SC2028
34
echo "\033[1;31m$e: Has $total_tests tests and $total_ignores ignores (should be $want_ignores)\033[0m"
35
exitcode=1
36
fi
0 commit comments