Skip to content

Commit d8fb075

Browse files
committed
triggering CI test
1 parent fd876a8 commit d8fb075

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

azure-pipelines.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ stages:
121121
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
122122
displayName: Top 100 long-running testcases
123123
- job: UT_FT_2
124+
condition: false
124125
displayName: FT client/spark-client
125126
timeoutInMinutes: '150'
126127
steps:
@@ -145,6 +146,7 @@ stages:
145146
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
146147
displayName: Top 100 long-running testcases
147148
- job: UT_FT_3
149+
condition: false
148150
displayName: UT FT clients & cli & utilities & sync
149151
timeoutInMinutes: '150'
150152
steps:
@@ -178,6 +180,7 @@ stages:
178180
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
179181
displayName: Top 100 long-running testcases
180182
- job: UT_FT_4
183+
condition: false
181184
displayName: UT FT other modules
182185
timeoutInMinutes: '150'
183186
steps:
@@ -211,6 +214,7 @@ stages:
211214
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
212215
displayName: Top 100 long-running testcases
213216
- job: IT
217+
condition: false
214218
displayName: IT modules
215219
timeoutInMinutes: '150'
216220
steps:

hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/functional/SparkClientFunctionalTestSuite.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,15 @@
1919

2020
package org.apache.hudi.functional;
2121

22+
import org.apache.hudi.client.functional.TestHoodieBackedMetadata;
23+
2224
import org.junit.platform.runner.JUnitPlatform;
2325
import org.junit.platform.suite.api.IncludeTags;
24-
import org.junit.platform.suite.api.SelectPackages;
26+
import org.junit.platform.suite.api.SelectClasses;
2527
import org.junit.runner.RunWith;
2628

2729
@RunWith(JUnitPlatform.class)
28-
@SelectPackages({
29-
"org.apache.hudi.client.functional",
30-
"org.apache.hudi.table.functional",
31-
"org.apache.hudi.index.hbase"})
30+
@SelectClasses({TestHoodieBackedMetadata.class})
3231
@IncludeTags("functional")
3332
public class SparkClientFunctionalTestSuite {
3433

0 commit comments

Comments
 (0)