alamb commented on code in PR #17677:
URL: https://github.com/apache/datafusion/pull/17677#discussion_r2365620855
##########
.github/workflows/rust.yml:
##########
@@ -287,9 +287,29 @@ jobs:
shared-key: "amd-ci"
- name: Inspect disk
run: df -h
+ - name: Compile tests (excluding doctests and datafusion-cli)
+ env:
+ RUST_BACKTRACE: 1
+ run: |
+ cargo test \
+ --profile ci \
+ --exclude datafusion-examples \
+ --exclude ffi_example_table_provider \
+ --exclude datafusion-benchmarks \
+ --exclude datafusion-cli \
+ --workspace \
+ --lib \
+ --tests \
+ --bins \
+ --features
serde,avro,json,backtrace,integration-tests,parquet_encryption \
+ --no-run
+ - name: Inspect disk
+ run: df -h
- name: Run tests (excluding doctests and datafusion-cli)
env:
RUST_BACKTRACE: 1
+ # Use dedicated tmp dir with more space for tests that may spill to
disk
+ TMPDIR: ${{ runner.temp }}
Review Comment:
interesting
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]