Skip to content

Commit

Permalink
Ignore failing integration tests which require a special environment …
Browse files Browse the repository at this point in the history
…to operate

The OneLake support should be considered unsupported and experimental until such
time when we can add integration testing to our CI process
  • Loading branch information
rtyler committed Sep 20, 2023
1 parent 6eef77b commit d13056e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions rust/tests/integration_object_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ async fn test_object_store_azure() -> TestResult {
Ok(())
}

// NOTE: This test is ignored based on [this
// comment](https://github.com/delta-io/delta-rs/pull/1564#issuecomment-1721048753) and we should
// figure out a way to re-enable this test at least in the GitHub Actions CI environment
#[ignore]
#[cfg(feature = "azure")]
#[tokio::test]
#[serial]
Expand All @@ -31,6 +35,10 @@ async fn test_object_store_onelake() -> TestResult {
Ok(())
}

// NOTE: This test is ignored based on [this
// comment](https://github.com/delta-io/delta-rs/pull/1564#issuecomment-1721048753) and we should
// figure out a way to re-enable this test at least in the GitHub Actions CI environment
#[ignore]
#[cfg(feature = "azure")]
#[tokio::test]
#[serial]
Expand Down

0 comments on commit d13056e

Please sign in to comment.