This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 9694f6a79 cargo test excluding doctests for mac,win64 (#5730)
9694f6a79 is described below
commit 9694f6a7914f9a22110fc1906a7f89beff4c7b92
Author: zhenxing jiang <[email protected]>
AuthorDate: Tue Mar 28 03:58:39 2023 +0800
cargo test excluding doctests for mac,win64 (#5730)
---
.github/workflows/rust.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 8a59cae01..e4bc9b77e 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -248,11 +248,11 @@ jobs:
rustup toolchain install stable
rustup default stable
rustup component add rustfmt
- - name: Run tests
+ - name: Run tests (excluding doctests)
shell: bash
run: |
export PATH=$PATH:$HOME/d/protoc/bin
- cargo test
+ cargo test --lib --tests --bins --features
avro,jit,scheduler,json,dictionary_expressions
env:
# do not produce debug symbols to keep memory usage down
RUSTFLAGS: "-C debuginfo=0"
@@ -282,10 +282,10 @@ jobs:
rustup toolchain install stable
rustup default stable
rustup component add rustfmt
- - name: Run tests
+ - name: Run tests (excluding doctests)
shell: bash
run: |
- cargo test
+ cargo test --lib --tests --bins --features
avro,jit,scheduler,json,dictionary_expressions
env:
# do not produce debug symbols to keep memory usage down
RUSTFLAGS: "-C debuginfo=0"