mirror of
https://github.com/actix/actix-web.git
synced 2024-11-13 04:11:09 +00:00
28 lines
1.1 KiB
Bash
Executable file
28 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# run tests matching what CI does for non-linux feature sets
|
|
|
|
set -x
|
|
|
|
EXIT=0
|
|
|
|
save_exit_code() {
|
|
eval $@
|
|
local CMD_EXIT=$?
|
|
[ "$CMD_EXIT" = "0" ] || EXIT=$CMD_EXIT
|
|
}
|
|
|
|
save_exit_code cargo test --lib --tests -p=actix-router --all-features -- --nocapture
|
|
save_exit_code cargo test --lib --tests -p=actix-http --all-features -- --nocapture
|
|
save_exit_code cargo test --lib --tests -p=actix-web --features=rustls,openssl -- --nocapture --skip=test_reading_deflate_encoding_large_random_rustls
|
|
save_exit_code cargo test --lib --tests -p=actix-web-codegen --all-features -- --nocapture
|
|
save_exit_code cargo test --lib --tests -p=awc --all-features -- --nocapture
|
|
save_exit_code cargo test --lib --tests -p=actix-http-test --all-features -- --nocapture
|
|
save_exit_code cargo test --lib --tests -p=actix-test --all-features -- --nocapture
|
|
save_exit_code cargo test --lib --tests -p=actix-files -- --nocapture
|
|
save_exit_code cargo test --lib --tests -p=actix-multipart --all-features -- --nocapture
|
|
save_exit_code cargo test --lib --tests -p=actix-web-actors --all-features -- --nocapture
|
|
|
|
save_exit_code cargo test --workspace --doc
|
|
|
|
exit $EXIT
|