This is an automated email from the ASF dual-hosted git repository.
vhs pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 708754fd85b2 docs: document wildcardSuites workaround for single Java
test runs (#17976)
708754fd85b2 is described below
commit 708754fd85b2ff8ee967588cb89d69b130268d6f
Author: yohaku999 <[email protected]>
AuthorDate: Thu Jan 22 20:46:06 2026 +0900
docs: document wildcardSuites workaround for single Java test runs (#17976)
---
website/contribute/developer-setup.md | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/website/contribute/developer-setup.md
b/website/contribute/developer-setup.md
index 6ce9933021e6..fb1fcc076902 100644
--- a/website/contribute/developer-setup.md
+++ b/website/contribute/developer-setup.md
@@ -65,12 +65,13 @@ with multi-threaded, could get your compilation in 1.5 to 2
mins.
If you wish to run any single test class in java.
```shell
-mvn test -Punit-tests -pl hudi-spark-datasource/hudi-spark/ -am -B
-DfailIfNoTests=false -Dtest=TestCleaner -Dspark3.5
+mvn test -Punit-tests -pl hudi-spark-datasource/hudi-spark/ -am -B
-DfailIfNoTests=false -Dtest=TestCleaner -DwildcardSuites="abc" -Dspark3.5
```
+-DwildcardSuites="abc" will assist in skipping all scala tests.
If you wish to run a single test method in java.
```shell
-mvn test -Punit-tests -pl hudi-spark-datasource/hudi-spark/ -am -B
-DfailIfNoTests=false -Dtest=TestCleaner#testKeepLatestCommitsMOR -Dspark3.5
+mvn test -Punit-tests -pl hudi-spark-datasource/hudi-spark/ -am -B
-DfailIfNoTests=false -Dtest=TestCleaner#testKeepLatestCommitsMOR
-DwildcardSuites="abc" -Dspark3.5
```
To filter particular scala test: