Skip to content

Commit 8234543

Browse files
committed
ci: fix tests
1 parent 34826c6 commit 8234543

File tree

2 files changed

+5
-22
lines changed

2 files changed

+5
-22
lines changed

.github/workflows/ci-post-merge.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -127,20 +127,3 @@ jobs:
127127

128128
- name: Check With Minimal Versions
129129
run: cargo minimal-versions check
130-
131-
nextest:
132-
name: nextest
133-
runs-on: ubuntu-latest
134-
steps:
135-
- uses: actions/checkout@v4
136-
137-
- name: Install Rust
138-
uses: actions-rust-lang/[email protected]
139-
140-
- name: Install cargo-nextest
141-
uses: taiki-e/[email protected]
142-
with:
143-
tool: cargo-nextest
144-
145-
- name: Test with cargo-nextest
146-
run: cargo nextest run

justfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ clippy toolchain="":
4747
[windows]
4848
test toolchain="":
4949
cargo {{ toolchain }} test --lib --tests --package=actix-macros
50-
cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros --no-default-features
51-
cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros {{ all_crate_features }}
50+
cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros --no-default-features
51+
cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros {{ all_crate_features }}
5252

5353
# Test workspace code.
5454
[linux]
5555
test toolchain="":
5656
cargo {{ toolchain }} test --lib --tests --package=actix-macros
57-
cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros --no-default-features
58-
cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros {{ non_linux_all_features_list }}
59-
cargo {{ toolchain }} nextest run --workspace --exclude=actix-macros {{ all_crate_features }}
57+
cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros --no-default-features
58+
cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros {{ non_linux_all_features_list }}
59+
cargo {{ toolchain }} nextest run --no-tests=warn --workspace --exclude=actix-macros {{ all_crate_features }}
6060

6161
# Test workspace using MSRV.
6262
test-msrv: downgrade-for-msrv (test msrv_rustup)

0 commit comments

Comments
 (0)