Skip to content

Commit

Permalink
fix: disable ClickHouse tests
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Feb 4, 2025
1 parent 5e0964a commit 0030204
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import io.kestra.core.utils.TestsUtils;
import io.kestra.plugin.scripts.exec.scripts.models.ScriptOutput;
import jakarta.inject.Inject;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.List;
Expand All @@ -16,6 +17,7 @@
import static org.hamcrest.Matchers.is;

@KestraTest
@Disabled
public class ClickHouseLocalCLITest {

@Inject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import static org.junit.jupiter.api.Assertions.assertThrows;

@KestraTest
@Disabled
public class ClickHouseQueriesTest extends AbstractRdbmsTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import io.kestra.plugin.jdbc.AbstractJdbcBatch;
import io.kestra.plugin.jdbc.AbstractJdbcQuery;
import io.kestra.plugin.jdbc.AbstractRdbmsTest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.io.*;
Expand All @@ -29,6 +30,7 @@
import static org.hamcrest.Matchers.*;

@KestraTest
@Disabled
public class ClickHouseTest extends AbstractRdbmsTest {
@SuppressWarnings("unchecked")
@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import io.kestra.plugin.jdbc.AbstractJdbcTriggerTest;
import io.kestra.core.junit.annotations.KestraTest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.io.FileNotFoundException;
Expand All @@ -14,6 +15,7 @@
import static org.hamcrest.Matchers.is;

@KestraTest
@Disabled
class ClickHouseTriggerTest extends AbstractJdbcTriggerTest {

@Test
Expand Down

0 comments on commit 0030204

Please sign in to comment.