Skip to content

Commit

Permalink
[ForTest]Ignore some test classes
Browse files Browse the repository at this point in the history
  • Loading branch information
hantangwangd committed Feb 6, 2025
1 parent b7206dc commit ab17d17
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import static java.lang.String.format;
import static java.nio.file.Files.createTempDirectory;

@Test
public class TestIcebergDistributedHadoop
@Test(enabled = false)
public abstract class TestIcebergDistributedHadoop
extends IcebergDistributedTestBase
{
public TestIcebergDistributedHadoop()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@
package com.facebook.presto.iceberg.hadoop;

import com.facebook.presto.iceberg.TestIcebergDistributedQueries;
import org.testng.annotations.Test;

import static com.facebook.presto.iceberg.CatalogType.HADOOP;

public class TestIcebergHadoopCatalogDistributedQueries
@Test(enabled = false)
public abstract class TestIcebergHadoopCatalogDistributedQueries
extends TestIcebergDistributedQueries
{
public TestIcebergHadoopCatalogDistributedQueries()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
import static java.nio.file.Files.createTempDirectory;
import static org.assertj.core.api.Assertions.assertThat;

@Test
public class TestIcebergSmokeHadoop
@Test(enabled = false)
public abstract class TestIcebergSmokeHadoop
extends IcebergDistributedSmokeTestBase
{
public TestIcebergSmokeHadoop()
Expand Down

0 comments on commit ab17d17

Please sign in to comment.