Skip to content

Commit

Permalink
ci: disable legacy workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
timvw committed Mar 26, 2024
1 parent 77cfe3b commit 4850609
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 347 deletions.
83 changes: 0 additions & 83 deletions .github/workflows/build_assets_and_add_to_release.yml

This file was deleted.

88 changes: 0 additions & 88 deletions .github/workflows/ci.yml

This file was deleted.

66 changes: 0 additions & 66 deletions .github/workflows/draft_release.yml

This file was deleted.

67 changes: 0 additions & 67 deletions .github/workflows/publish_artifacts.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/workflows/published_release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/globbing_path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,4 +233,4 @@ fn split_glob_expression(path: &str) -> Option<(&str, &str)> {
}
None
}
*/
*/
8 changes: 2 additions & 6 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ use std::sync::Arc;
//use datafusion::catalog::TableReference;

use datafusion::common::Result;
use datafusion::datasource::listing::{
ListingTable, ListingTableConfig, ListingTableUrl,
};
use datafusion::datasource::listing::{ListingTable, ListingTableConfig, ListingTableUrl};
use datafusion::prelude::*;

mod args;
Expand Down Expand Up @@ -113,9 +111,7 @@ mod tests {
#[tokio::test]
async fn run_with_local_parquet_files_in_folder() -> Result<()> {
let mut cmd = get_qv_cmd()?;
let cmd = cmd.arg(get_qv_testing_path(
"data/iceberg/db/COVID-19_NYT/data",
));
let cmd = cmd.arg(get_qv_testing_path("data/iceberg/db/COVID-19_NYT/data"));
cmd.assert()
.success()
.stdout(predicate::str::contains(
Expand Down

0 comments on commit 4850609

Please sign in to comment.