File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 3232 matrix :
3333 os :
3434 - ubuntu-latest
35- # - macos-latest
35+ - macos-latest
3636 rust : [stable]
3737 steps :
3838 - uses : actions/checkout@v4
7171 run : cargo clippy --all-targets --all-features --no-deps -- -D warnings
7272
7373 - name : Run tests
74- run : cargo test --all-features
74+ run : |
75+ if [[ "$RUNNER_OS" == "macOS" ]]; then
76+ cargo test --features skip-tests-with-docker
77+ else
78+ cargo test
79+ fi
7580
7681 - name : Check documentation
7782 run : cargo doc --no-deps --all-features
Original file line number Diff line number Diff line change @@ -23,3 +23,7 @@ tempfile = "3.14"
2323anyhow = " 1.0"
2424aws-sdk-s3 = " 1.75"
2525aws-credential-types = " 1.2"
26+
27+ [features ]
28+ # Allow skipping tests that use docker (in CI, macos doesn't support docker).
29+ skip-tests-with-docker = []
Original file line number Diff line number Diff line change @@ -200,6 +200,7 @@ async fn create_s3_test_catalog(
200200}
201201
202202#[ tokio:: test]
203+ #[ cfg_attr( feature = "skip-docker-tests" , ignore) ]
203204async fn test_minio_object_store_integration ( ) -> anyhow:: Result < ( ) > {
204205 // Tests DataFusion-DuckLake reading from S3/MinIO with DuckDB-created data
205206
You can’t perform that action at this time.
0 commit comments