forked from JanKaul/iceberg-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (17 loc) · 698 Bytes
/
Makefile
File metadata and controls
23 lines (17 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
test: test-iceberg-rust-spec test-iceberg-rust test-datafusion_iceberg
test-iceberg-rust-spec:
cargo test -p iceberg-rust-spec --lib
test-iceberg-rust:
cargo test -p iceberg-rust --lib
test-datafusion_iceberg:
cargo test -p datafusion_iceberg --tests -j 2 && cargo clean -p datafusion_iceberg
test-rest-catalog:
cargo test -p iceberg-rest-catalog --lib && cargo clean -p iceberg-rest-catalog
test-file-catalog:
cargo test -p iceberg-file-catalog --lib && cargo clean -p iceberg-file-catalog
test-sql-catalog:
cargo test -p iceberg-sql-catalog --lib && cargo clean -p iceberg-sql-catalog
clippy:
cargo clippy --all-targets --all-features -- -D warnings
fmt:
cargo fmt --all -- --check