From 065f91dfb4e35449e8aae063394f6431a4fa8756 Mon Sep 17 00:00:00 2001 From: Mats Larsen Date: Mon, 15 Apr 2024 11:20:24 +0200 Subject: [PATCH] Add utopa-scalar to tests --- scripts/test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/test.sh b/scripts/test.sh index eb5ffb8a..7898ea13 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -29,5 +29,7 @@ for crate in $crates; do $CARGO test -p utoipa-redoc --features actix-web,rocket,axum elif [[ "$crate" == "utoipa-rapidoc" ]]; then $CARGO test -p utoipa-rapidoc --features actix-web,rocket,axum + elif [[ "$crate" == "utoipa-scalar" ]]; then + $CARGO test -p utoipa-scalar --features actix-web,rocket,axum fi done