From 0c43c57a7b9715ce35eafe4efe72aaa72df49fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kh=E1=BA=A3i?= Date: Sun, 3 May 2026 23:28:21 +0700 Subject: [PATCH] ci(test): skip rendering dependency documentation --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index ebcd43dc..161137de 100755 --- a/test.sh +++ b/test.sh @@ -63,7 +63,7 @@ unit() ( done run_if "${LINT:-true}" cargo clippy "$@" -- -D warnings run_if "${DOC:-false}" env RUSTDOCFLAGS="-D warnings ${RUSTDOCFLAGS:-}" \ - cargo doc --document-private-items "$@" + cargo doc --document-private-items --no-deps "$@" run_if "${BUILD:-true}" cargo build ${build_flags[@]+"${build_flags[@]}"} "$@" if [[ ${#skip_args[@]} -gt 0 ]]; then run_if "${TEST:-true}" cargo test ${test_flags[@]+"${test_flags[@]}"} "$@" -- "${skip_args[@]}"