-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a65f72c
commit 7d10625
Showing
4 changed files
with
91 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// #![cfg(feature = "integration_test")] | ||
use deltalake_test::{test_read_tables, IntegrationContext, TestResult}; | ||
use serial_test::serial; | ||
|
||
mod context; | ||
use context::*; | ||
// | ||
#[tokio::test] | ||
#[serial] | ||
async fn test_read_tables_lakefs() -> TestResult { | ||
let context = IntegrationContext::new(Box::<LakeFSIntegration>::default())?; | ||
|
||
test_read_tables(&context).await?; | ||
|
||
Ok(()) | ||
} |