diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9bf5841d..11bb6254 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -63,12 +63,6 @@ jobs: cd ntex cargo test --no-default-features --no-fail-fast --features="async-std,cookie,url,compress,openssl,rustls" --lib -- --test-threads 1 - - name: Run glommio tests - timeout-minutes: 40 - run: | - cd ntex - sudo -E env PATH="$PATH" bash -c "ulimit -l 512 && ulimit -a && cargo test --no-default-features --no-fail-fast --features=\"glommio,cookie,url,compress,openssl,rustls\"" - - name: Install tarpaulin if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') continue-on-error: true @@ -81,13 +75,6 @@ jobs: run: | cargo tarpaulin --out Xml --all --all-features - - name: Generate coverage report (async-std) - if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') - continue-on-error: true - run: | - cd ntex - cargo tarpaulin --out Xml --output-dir=.. --no-default-features --features="async-std,cookie,url,compress,openssl,rustls" --lib - - name: Generate coverage report (glommio) if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') continue-on-error: true diff --git a/codecov.yml b/codecov.yml index 66ec69b4..e385d20d 100644 --- a/codecov.yml +++ b/codecov.yml @@ -4,3 +4,4 @@ ignore: # ignore codecoverage on following paths - "**/examples" - "ntex-macros" - "ntex-rt-macros" + - "ntex-async-std"