Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ stages:
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
displayName: Top 100 long-running testcases
- job: UT_FT_2
condition: false
displayName: FT client/spark-client
timeoutInMinutes: '150'
steps:
Expand All @@ -145,6 +146,7 @@ stages:
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
displayName: Top 100 long-running testcases
- job: UT_FT_3
condition: false
displayName: UT FT clients & cli & utilities & sync
timeoutInMinutes: '150'
steps:
Expand Down Expand Up @@ -178,6 +180,7 @@ stages:
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
displayName: Top 100 long-running testcases
- job: UT_FT_4
condition: false
displayName: UT FT other modules
timeoutInMinutes: '150'
steps:
Expand Down Expand Up @@ -211,6 +214,7 @@ stages:
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
displayName: Top 100 long-running testcases
- job: IT
condition: false
displayName: IT modules
timeoutInMinutes: '150'
steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,15 @@

package org.apache.hudi.functional;

import org.apache.hudi.client.functional.TestHoodieBackedMetadata;

import org.junit.platform.runner.JUnitPlatform;
import org.junit.platform.suite.api.IncludeTags;
import org.junit.platform.suite.api.SelectPackages;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.runner.RunWith;

@RunWith(JUnitPlatform.class)
@SelectPackages({
"org.apache.hudi.client.functional",
"org.apache.hudi.table.functional",
"org.apache.hudi.index.hbase"})
@SelectClasses({TestHoodieBackedMetadata.class})
@IncludeTags("functional")
public class SparkClientFunctionalTestSuite {

Expand Down