Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions crates/adapters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ iceberg-tests-fs = []
iceberg-tests-glue = []
iceberg-tests-rest = []
iceberg-tests-s3tables = []
# Follow-mode tests. Need a REST catalog and an S3 store both the writer
# (pyiceberg) and the connector can reach. See crates/iceberg/src/test/README.md.
iceberg-tests-follow = []
fips = ["rustls/fips"]
bench-mode = []
with-postgres-cdc = ["etl", "etl-config", "etl-postgres"]
Expand Down
3 changes: 2 additions & 1 deletion crates/adapters/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ mod datagen;
feature = "iceberg-tests-fs",
feature = "iceberg-tests-glue",
feature = "iceberg-tests-rest",
feature = "iceberg-tests-s3tables"
feature = "iceberg-tests-s3tables",
feature = "iceberg-tests-follow"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this feature isn't enabled in CI, so the tests won't run

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but it requires tabulario/iceberg-rest:1.6.0 for rest catalog

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

)
))]
mod iceberg;
Expand Down
Loading
Loading