Skip to content

Commit

Permalink
Remove remaining rs feature usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimahriman committed Dec 21, 2023
1 parent 4738da1 commit 846c5d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: sudo apt-get install -y libkrb5-dev libgsasl-dev

- name: build and lint with clippy
run: cargo clippy --tests --features kerberos,token,integration-test,rs
run: cargo clippy --tests --features kerberos,token,integration-test

- name: Check docs
run: cargo doc
Expand All @@ -66,7 +66,7 @@ jobs:
run: cargo check --features object_store

- name: Check all features
run: cargo check --features kerberos,token,object_store,rs,integration-test
run: cargo check --features kerberos,token,object_store,integration-test

test:
strategy:
Expand Down Expand Up @@ -109,4 +109,4 @@ jobs:
echo "$GITHUB_WORKSPACE/hadoop-3.3.6/bin" >> $GITHUB_PATH
- name: Run tests
run: cargo test --features kerberos,token,object_store,integration-test,rs
run: cargo test --features kerberos,token,object_store,integration-test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ cargo build --features token,kerberos
The tests are mostly integration tests that utilize a small Java application in `rust/mindifs/` that runs a custom `MiniDFSCluster`. To run the tests, you need to have Java, Maven, Hadoop binaries, and Kerberos tools available and on your path. Any Java version between 8 and 17 should work.
```bash
cargo test -p hdfs-native --features token,kerberos,rs,intergation-test
cargo test -p hdfs-native --features token,kerberos,intergation-test
```

### Python tests
Expand Down

0 comments on commit 846c5d7

Please sign in to comment.