diff --git a/.github/workflows/ci-post-merge.yml b/.github/workflows/ci-post-merge.yml index f716bc9402..a1bc4acd39 100644 --- a/.github/workflows/ci-post-merge.yml +++ b/.github/workflows/ci-post-merge.yml @@ -127,20 +127,3 @@ jobs: - name: Check With Minimal Versions run: cargo minimal-versions check - - nextest: - name: nextest - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Install Rust - uses: actions-rust-lang/setup-rust-toolchain@v1.10.1 - - - name: Install cargo-nextest - uses: taiki-e/install-action@v2.46.4 - with: - tool: cargo-nextest - - - name: Test with cargo-nextest - run: cargo nextest run diff --git a/justfile b/justfile index 9e92635a53..86e4816df0 100644 --- a/justfile +++ b/justfile @@ -47,16 +47,16 @@ clippy toolchain="": [windows] test toolchain="": cargo {{ toolchain }} test --lib --tests --package=actix-macros - cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros --no-default-features - cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros {{ all_crate_features }} + cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros --no-default-features + cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros {{ all_crate_features }} # Test workspace code. [linux] test toolchain="": cargo {{ toolchain }} test --lib --tests --package=actix-macros - cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros --no-default-features - cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros {{ non_linux_all_features_list }} - cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros {{ all_crate_features }} + cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros --no-default-features + cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros {{ non_linux_all_features_list }} + cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros {{ all_crate_features }} # Test workspace using MSRV. test-msrv: downgrade-for-msrv (test msrv_rustup)