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 1a2f652 commit 4c7fd2dCopy full SHA for 4c7fd2d
ci/style.sh
@@ -60,7 +60,8 @@ done < "$tmpfile"
60
rm "$tmpfile"
61
62
if shellcheck --version ; then
63
- find . -name '*.sh' -print0 | xargs -0 shellcheck
+ # FIXME(ctest): update ctest scripts so we don't need to exclude them
64
+ find . -name '*.sh' -not -path './ctest/*' -print0 | xargs -0 shellcheck
65
else
66
echo "shellcheck not found"
67
exit 1
ctest/testcrate/Cargo.toml
@@ -4,6 +4,7 @@ version = "0.1.0"
4
authors = ["Alex Crichton <alex@alexcrichton.com>"]
5
build = "build.rs"
6
edition = "2021"
7
+publish = false
8
9
[build-dependencies]
10
ctest2 = { path = ".." }
0 commit comments