Skip to content

Commit

Permalink
cargo test excluding doctests for mac,win64 (#5730)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangzhx authored Mar 27, 2023
1 parent a6b8743 commit 9694f6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 9694f6a

Please sign in to comment.