diff --git a/README.md b/README.md index 9b808d849..19e638840 100644 --- a/README.md +++ b/README.md @@ -153,15 +153,7 @@ Some design principles which should be considered: - If using `emacs`, both [eglot](https://github.com/joaotavora/eglot) and [lsp-mode](https://github.com/emacs-lsp/lsp-mode) provide excellent integration with `rust-analyzer`. [rustic](https://github.com/brotzeit/rustic) is a nice mode as well. -- When also developing in VS Code it's sometimes convenient to configure rust-analyzer in - `.vscode/settings.json`. - -```json -{ - "editor.formatOnSave": true, - "rust-analyzer.cargo.features": ["default-engine"] -} -``` +- When also developing in VS Code it's convenient to add rust-analyzer to your workspace. - The crate's documentation can be easily reviewed with: `cargo docs --open` - Code coverage is available on codecov via [cargo-llvm-cov]. See their docs for instructions to install/run locally. diff --git a/kernel/tests/hdfs.rs b/kernel/tests/hdfs.rs index da39c9c77..52cc6a899 100644 --- a/kernel/tests/hdfs.rs +++ b/kernel/tests/hdfs.rs @@ -52,6 +52,7 @@ async fn write_local_path_to_hdfs( } #[tokio::test] +#[ignore = "Skipping HDFS integration test"] async fn read_table_version_hdfs() -> Result<(), Box> { let minidfs = MiniDfs::with_features(&HashSet::new()); let hdfs_client = Client::default();