rkrishn7 commented on code in PR #17677:
URL: https://github.com/apache/datafusion/pull/17677#discussion_r2365700308


##########
.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:
   Yeah I'm not sure this actually does anything. I saw an article that 
mentioned this points to a separate filesystem mounted on a disk/partition with 
more space but I don't think that's the case (at least not anymore).



-- 
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]

Reply via email to