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 a248b66 commit 5f84670Copy full SHA for 5f84670
scripts/run_test.sh
@@ -12,6 +12,9 @@ COMMON_FEATURES_STR="${COMMON_FEATURES[*]}"
12
for FEATURE in "${SCHEMA_VERSION_FEATURES[@]}"; do
13
echo "🚀 Running tests with: --features \"$COMMON_FEATURES_STR $FEATURE\""
14
cargo nextest run --no-default-features --features "$COMMON_FEATURES_STR $FEATURE"
15
+ echo
16
+ echo "🚀 Running documentation tests with: --features \"$COMMON_FEATURES_STR $FEATURE\""
17
+ cargo test --doc --no-default-features --features "$COMMON_FEATURES_STR $FEATURE"
18
19
# stop on failure
20
if [ $? -ne 0 ]; then
0 commit comments