From f077a4012c1544537ac25a61371f1077dbe0a044 Mon Sep 17 00:00:00 2001 From: Kade Robertson Date: Mon, 13 Feb 2023 16:53:31 -0500 Subject: [PATCH] ci: fix http feature name --- .github/workflows/test.yml | 2 +- test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e3c54ed..b03a9f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,7 +58,7 @@ jobs: - native-certs - gzip - brotli - - http + - http-interop env: RUST_BACKTRACE: "1" RUSTFLAGS: "-D dead_code -D unused-variables -D unused" diff --git a/test.sh b/test.sh index 76bc205..beaba41 100755 --- a/test.sh +++ b/test.sh @@ -4,7 +4,7 @@ set -eu export RUST_BACKTRACE=1 export RUSTFLAGS="-D dead_code -D unused-variables -D unused" -for feature in "" tls json charset cookies socks-proxy "tls native-certs" native-tls gzip brotli http; do +for feature in "" tls json charset cookies socks-proxy "tls native-certs" native-tls gzip brotli http-interop; do if ! cargo test --no-default-features --features "${feature}" ; then echo Command failed: cargo test --no-default-features --features \"${feature}\" exit 1