This is an automated email from the ASF dual-hosted git repository.

mbutrovich pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git


The following commit(s) were added to refs/heads/main by this push:
     new 3b87fb091 chore: Use cargo-nextest in CI (#2546)
3b87fb091 is described below

commit 3b87fb0913f954ab8075f43eaadc706c63886bb2
Author: Andy Grove <[email protected]>
AuthorDate: Mon Oct 13 08:37:18 2025 -0600

    chore: Use cargo-nextest in CI (#2546)
    
    * use nextest in CI
    
    * install from source
    
    * no profile
---
 .github/actions/rust-test/action.yaml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/.github/actions/rust-test/action.yaml 
b/.github/actions/rust-test/action.yaml
index bc7631903..4c9b13a17 100644
--- a/.github/actions/rust-test/action.yaml
+++ b/.github/actions/rust-test/action.yaml
@@ -61,8 +61,14 @@ runs:
         cd common
         ../mvnw -B clean compile -DskipTests
 
+    - name: Install nextest
+      shell: bash
+      run: |
+        cargo install cargo-nextest --locked
+
     - name: Run Cargo test
       shell: bash
       run: |
         cd native
-        RUST_BACKTRACE=1 cargo test
+        RUST_BACKTRACE=1 cargo nextest run
+


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to