fix ci, don't run doctests

This commit is contained in:
Rob Ede 2021-11-21 23:18:25 +00:00
parent 1f28bea3a5
commit fae8956265
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
1 changed files with 11 additions and 11 deletions

View File

@ -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: |