diff --git a/.github/workflows/cov.yml b/.github/workflows/cov.yml index 010df083a..8b8e39887 100644 --- a/.github/workflows/cov.yml +++ b/.github/workflows/cov.yml @@ -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,ws" + run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls,ws,brotli" - name: Code coverage - run: cargo +nightly llvm-cov --no-report --all --doctests --no-default-features --features="tokio,cookie,url,compress,openssl,rustls,ws" + run: cargo +nightly llvm-cov --no-report --all --doctests --no-default-features --features="tokio,cookie,url,compress,openssl,rustls,ws,brotli" - 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"