This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 9bb755dd8 [test] By removing all default exclusions the nested classes 
get executed (#3211)
9bb755dd8 is described below

commit 9bb755dd88d973d170d34bc5b54c03822b3da665
Author: Jingsong Lee <[email protected]>
AuthorDate: Mon Apr 15 16:19:39 2024 +0800

    [test] By removing all default exclusions the nested classes get executed 
(#3211)
---
 .../org/apache/paimon/mergetree/SortBufferWriteBufferTestBase.java    | 2 +-
 pom.xml                                                               | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git 
a/paimon-core/src/test/java/org/apache/paimon/mergetree/SortBufferWriteBufferTestBase.java
 
b/paimon-core/src/test/java/org/apache/paimon/mergetree/SortBufferWriteBufferTestBase.java
index 89b217b5a..5a911c006 100644
--- 
a/paimon-core/src/test/java/org/apache/paimon/mergetree/SortBufferWriteBufferTestBase.java
+++ 
b/paimon-core/src/test/java/org/apache/paimon/mergetree/SortBufferWriteBufferTestBase.java
@@ -167,7 +167,7 @@ public abstract class SortBufferWriteBufferTestBase {
 
         @Override
         protected boolean addOnly() {
-            return false;
+            return true;
         }
 
         @Override
diff --git a/pom.xml b/pom.xml
index 0aaa9977a..da4679424 100644
--- a/pom.xml
+++ b/pom.xml
@@ -493,6 +493,10 @@ under the License.
                         
<junit.jupiter.extensions.autodetection.enabled>true</junit.jupiter.extensions.autodetection.enabled>
                     </systemPropertyVariables>
                     <argLine>-Xms256m -Xmx2048m 
-Dmvn.forkNumber=${surefire.forkNumber} -XX:+UseG1GC</argLine>
+                    <!-- By removing all default exclusions the nested classes 
get executed too -->
+                    <excludes>
+                        <exclude/>
+                    </excludes>
                 </configuration>
                 <executions>
                     <!--execute all the unit tests-->

Reply via email to