Move the websocket code to a separate ws feature (#320)

This commit is contained in:
Sergey Vilgelm 2024-03-28 02:00:43 -07:00 committed by GitHub
parent 4ed6712ac4
commit d3499feb80
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 43 additions and 17 deletions

View file

@ -31,10 +31,10 @@ jobs:
run: cargo llvm-cov clean --workspace
- name: Code coverage (glommio)
run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls"
run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls,ws"
- name: Code coverage
run: cargo +nightly llvm-cov --no-report --all --doctests --no-default-features --features="tokio,cookie,url,compress,openssl,rustls"
run: cargo +nightly llvm-cov --no-report --all --doctests --no-default-features --features="tokio,cookie,url,compress,openssl,rustls,ws"
- name: Generate coverage report
run: cargo +nightly llvm-cov report --lcov --output-path lcov.info --ignore-filename-regex="ntex-tokio|ntex-glommio|ntex-async-std"