Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,20 @@ jobs:
cargo test --no-fail-fast ${{ matrix.test-suite.args }}
fi

# HDFS integration tests are `#[ignore]`d so a plain `cargo test`
# skips them locally on macOS/Windows where the docker fixture's
# host networking is unreliable; CI opts them in by filtering on
# the `file_io_hdfs` substring in the test name.
- name: Run HDFS integration tests
if: matrix.test-suite.name == 'default'
shell: bash
env:
RUSTFLAGS: "-C debuginfo=0"
run: |
cargo nextest run ${{ matrix.test-suite.args }} \
--run-ignored=only \
-E 'test(file_io_hdfs)'

- name: Stop Docker containers
if: always() && matrix.test-suite.name == 'default'
run: make docker-down
Expand Down
Loading
Loading