This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
The following commit(s) were added to refs/heads/main by this push:
new c7727e3 chore: doc-test as a target (#235)
c7727e3 is described below
commit c7727e3c0e26b445231750eda574894dd4162e5a
Author: Renjie Liu <[email protected]>
AuthorDate: Sat Mar 9 15:38:21 2024 +0800
chore: doc-test as a target (#235)
---
Makefile | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index d411cce..ff01e18 100644
--- a/Makefile
+++ b/Makefile
@@ -42,9 +42,11 @@ check-toml:
check: check-fmt check-clippy cargo-sort check-toml
-unit-test:
+doc-test:
+ cargo test --no-fail-fast --doc --all-features --workspace
+
+unit-test: doc-test
cargo test --no-fail-fast --lib --all-features --workspace
-test:
- cargo test --no-fail-fast --all-targets --all-features --workspace
- cargo test --no-fail-fast --doc --all-features --workspace
\ No newline at end of file
+test: doc-test
+ cargo test --no-fail-fast --all-targets --all-features --workspace
\ No newline at end of file