From f5a7f97c9fab9d4ffa70e57d25b577213686c1ef Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 28 Dec 2022 20:52:33 +0600 Subject: [PATCH] Update glommio cos tests (#155) --- .github/workflows/cov.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cov.yml b/.github/workflows/cov.yml index 731e7c7b..58bcadea 100644 --- a/.github/workflows/cov.yml +++ b/.github/workflows/cov.yml @@ -25,10 +25,13 @@ jobs: uses: Swatinem/rust-cache@v1.0.1 - name: Code coverage - run: cargo llvm-cov --all --all-features --lcov --output-path lcov.info + run: cargo llvm-cov --no-report --all --no-default-features --features="tokio,cookie,url,compress,openssl,rustls" - name: Code coverage (glommio) - run: cargo llvm-cov --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls" --lcov --output-path lcov.info + run: cargo llvm-cov --no-report --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls" + + - name: Generate coverage report + 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@v3