2021-11-30 14:12:04 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# run tests matching what CI does for non-linux feature sets
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
cargo test --lib --tests -p=actix-router --all-features
|
|
|
|
cargo test --lib --tests -p=actix-http --all-features
|
|
|
|
cargo test --lib --tests -p=actix-web --features=rustls,openssl -- --skip=test_reading_deflate_encoding_large_random_rustls
|
|
|
|
cargo test --lib --tests -p=actix-web-codegen --all-features
|
|
|
|
cargo test --lib --tests -p=awc --all-features
|
|
|
|
cargo test --lib --tests -p=actix-http-test --all-features
|
|
|
|
cargo test --lib --tests -p=actix-test --all-features
|
|
|
|
cargo test --lib --tests -p=actix-files
|
|
|
|
cargo test --lib --tests -p=actix-multipart --all-features
|
|
|
|
cargo test --lib --tests -p=actix-web-actors --all-features
|
2021-12-02 17:04:40 +00:00
|
|
|
|
|
|
|
cargo test --workspace --doc
|