Glommio clippy (#341)

This commit is contained in:
Nikolay Kim 2024-04-08 11:55:49 +05:00 committed by GitHub
parent a858394855
commit ec8eb23707
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 28 additions and 50 deletions

View file

@ -38,5 +38,6 @@ jobs:
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true

View file

@ -53,12 +53,12 @@ jobs:
continue-on-error: true
run: |
cd ntex
cargo test --no-default-features --no-fail-fast --features="async-std,cookie,url,compress,openssl,rustls,ws"
cargo test --no-default-features --no-fail-fast --features="async-std,cookie,url,compress,openssl,rustls,ws,brotli"
- name: Install cargo-cache
continue-on-error: true
run: |
cargo install cargo-cache --version 0.6.2 --no-default-features --features ci-autoclean
cargo install cargo-cache --no-default-features --features ci-autoclean
- name: Clear the cargo caches
continue-on-error: true

View file

@ -40,7 +40,12 @@ jobs:
- name: Run tests
run: cargo test --all --all-features --no-fail-fast -- --nocapture
- name: Clear the cargo caches
- name: Install cargo-cache
continue-on-error: true
run: |
cargo install cargo-cache --no-default-features --features ci-autoclean
- name: Clear the cargo caches
continue-on-error: true
run: |
cargo-cache

View file

@ -63,21 +63,4 @@ jobs:
- name: Run tests
run: |
cargo test --lib --all-features --no-fail-fast -- --nocapture \
--skip test_panic_in_worker \
--skip test_connection_force_close \
--skip test_connection_server_close \
--skip test_freeze \
--skip test_simple \
--skip test_test_methods \
--skip test_connection_wait_queue_force_close \
--skip test_params \
--skip test_body \
--skip test_form \
--skip test_json \
--skip test_connection_reuse \
--skip test_connection_wait_queue \
--skip test_no_decompress \
--skip test_connection_reuse_h2 \
--skip test_h2_tcp \
--skip test_timer
cargo test --lib --all-features --no-fail-fast -- --nocapture --skip test_panic_in_worker --skip test_connection_force_close --skip test_connection_server_close --skip test_freeze --skip test_simple --skip test_test_methods --skip test_connection_wait_queue_force_close --skip test_params --skip test_body --skip test_form --skip test_json --skip test_connection_reuse --skip test_connection_wait_queue --skip test_no_decompress --skip test_connection_reuse_h2 --skip test_h2_tcp --skip test_timer