Ignore async-std tests

This commit is contained in:
Nikolay Kim 2022-02-01 07:04:18 +06:00
parent 5866014e75
commit d2d5dd0b91
2 changed files with 1 additions and 13 deletions

View file

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

View file

@ -4,3 +4,4 @@ ignore: # ignore codecoverage on following paths
- "**/examples"
- "ntex-macros"
- "ntex-rt-macros"
- "ntex-async-std"