diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abbe26b5e..38c066d6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,16 +71,16 @@ jobs: - name: tests timeout-minutes: 60 run: | - cargo test -p=actix-router --all-features - cargo test -p=actix-http --all-features - cargo test -p=actix-web --features=rustls,openssl -- --skip=test_reading_deflate_encoding_large_random_rustls - cargo test -p=actix-web-codegen --all-features - cargo test -p=awc --all-features - cargo test -p=actix-http-test --all-features - cargo test -p=actix-test --all-features - cargo test -p=actix-files - cargo test -p=actix-multipart --all-features - cargo test -p=actix-web-actors --all-features + 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 - name: tests (io-uring) if: matrix.target.os == 'ubuntu-latest' @@ -89,7 +89,7 @@ jobs: sudo bash -c "ulimit -Sl 512 && ulimit -Hl 512 && PATH=$PATH:/usr/share/rust/.cargo/bin - && RUSTUP_TOOLCHAIN=${{ matrix.version }} cargo test -p=actix-files --all-features" + && RUSTUP_TOOLCHAIN=${{ matrix.version }} cargo test --lib --tests -p=actix-files --all-features" - name: Clear the cargo caches run: |