diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c278d8b8e..bf900e88c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,9 @@ jobs: - name: tests uses: actions-rs/cargo@v1 timeout-minutes: 40 - with: { command: ci-test } + with: + command: ci-test + args: --skip=test_reading_deflate_encoding_large_random_rustls - name: doc tests uses: actions-rs/cargo@v1 diff --git a/tests/test_server.rs b/tests/test_server.rs index 9131d1f29..afea39dd9 100644 --- a/tests/test_server.rs +++ b/tests/test_server.rs @@ -879,7 +879,7 @@ async fn test_brotli_encoding_large_openssl() { assert_eq!(bytes, Bytes::from(data)); } -#[cfg(all(feature = "rustls", feature = "openssl"))] +#[cfg(feature = "rustls")] mod plus_rustls { use std::io::BufReader;