@@ -215,7 +215,7 @@ jobs:
215215 with :
216216 env-vars : " RUST_TOOLCHAIN=${{env.RUST_TOOLCHAIN}}"
217217 - name : Run tests
218- run : cargo test --features=cli,compression ,rustls --workspace -- --ignored
218+ run : cargo test --features=cli,http-full,proxy-full ,rustls --workspace -- --ignored
219219
220220 test-ignored-macos :
221221 needs : [check, check-msrv, check-all-features]
@@ -230,7 +230,23 @@ jobs:
230230 with :
231231 env-vars : " RUST_TOOLCHAIN=${{env.RUST_TOOLCHAIN}}"
232232 - name : Run tests
233- run : cargo test --features=cli,compression,rustls --workspace -- --ignored
233+ run : cargo test --features=cli,http-full,proxy-full,rustls --workspace -- --ignored
234+
235+ test-ignored-windows :
236+ needs : [check, check-msrv, check-all-features]
237+ runs-on : windows-latest
238+ timeout-minutes : 120
239+ steps :
240+ - uses : ilammy/setup-nasm@v1
241+ - uses : actions/checkout@v5
242+ - uses : dtolnay/rust-toolchain@master
243+ with :
244+ toolchain : ${{env.RUST_TOOLCHAIN}}
245+ - uses : Swatinem/rust-cache@v2
246+ with :
247+ env-vars : " RUST_TOOLCHAIN=${{env.RUST_TOOLCHAIN}}"
248+ - name : Run tests
249+ run : cargo test --features=cli,http-full,proxy-full,rustls --workspace -- --ignored
234250
235251 test-docs :
236252 needs : [check, check-msrv, check-all-features]
0 commit comments