diff --git a/.github/workflows/cov.yml b/.github/workflows/cov.yml index c08e1cc7..ac53aec9 100644 --- a/.github/workflows/cov.yml +++ b/.github/workflows/cov.yml @@ -26,17 +26,17 @@ jobs: - name: Clean coverage results 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,brotli" + #- name: Code coverage (glommio) + # run: cargo llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls,ws,brotli" - - name: Code coverage (compio) - run: cargo +nightly llvm-cov --no-report --all --no-default-features --features="compio,cookie,url,compress,openssl,rustls,ws,brotli" + #- name: Code coverage (tokio) + # run: cargo llvm-cov --no-report --all --no-default-features --features="tokio,cookie,url,compress,openssl,rustls,ws,brotli" - name: Code coverage - run: RUST_LOG=trace cargo +nightly llvm-cov --no-report --all --doctests --no-default-features --features="tokio,cookie,url,compress,openssl,rustls,ws,brotli" + run: cargo llvm-cov --no-report --all --no-default-features --features="compio,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|ntex-compio" + run: cargo llvm-cov report --lcov --output-path lcov.info --ignore-filename-regex="ntex-tokio|ntex-glommio|ntex-async-std" - name: Upload coverage to Codecov uses: codecov/codecov-action@v4