Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use nextest in CI #12955

Merged
merged 13 commits into from
Oct 8, 2023
8 changes: 8 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[test-groups]
serial-integration = { max-threads = 1 }


[[profile.default.overrides]]
filter = 'package(databend-meta)'
test-group = 'serial-integration'

3 changes: 2 additions & 1 deletion .github/actions/test_unit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ runs:
bypass_env_vars: RUSTFLAGS,RUSTDOCFLAGS,RUST_TEST_THREADS,RUST_LOG,RUST_BACKTRACE

- shell: bash
run: cargo -Zgitoxide=fetch,shallow-index,shallow-deps test
run: |
cargo -Zgitoxide=fetch,shallow-index,shallow-deps nextest run --no-fail-fast --hide-progress-bar
env:
RUST_TEST_THREADS: "8"
RUST_LOG: ERROR
Expand Down
Loading