Update glommio cos tests (#155)

This commit is contained in:
Nikolay Kim 2022-12-28 20:52:33 +06:00 committed by GitHub
parent a54f6f7ac2
commit f5a7f97c9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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