From 91d88f6ce9634f3888bbbd6a9f3604e7d605c943 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 23 Jun 2021 19:12:06 +0100 Subject: [PATCH] readd test skip --- .github/workflows/ci.yml | 4 +++- tests/test_server.rs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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;