Skip to content

Commit

Permalink
chore(vertica): disable test to allows plugin to be built (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye authored Aug 6, 2024
1 parent 7875e9e commit 39e9a21
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import io.kestra.plugin.jdbc.AbstractJdbcBatch;
import io.kestra.plugin.jdbc.AbstractRdbmsTest;
import io.kestra.core.junit.annotations.KestraTest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.io.*;
Expand All @@ -23,6 +24,7 @@
import static org.hamcrest.Matchers.is;

@KestraTest
@Disabled("Issue with EOFException")
public class BatchTest extends AbstractRdbmsTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.google.common.collect.ImmutableMap;
import io.kestra.core.junit.annotations.KestraTest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import io.kestra.core.runners.RunContext;
import io.kestra.plugin.jdbc.AbstractJdbcQuery;
Expand All @@ -23,6 +24,7 @@
* See : https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-reference-type-conversions.html
*/
@KestraTest
@Disabled("Issue with EOFException")
public class VerticaTest extends AbstractRdbmsTest {
@Test
void select() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import static org.hamcrest.Matchers.is;

@KestraTest
@Disabled("Issue with EOFException")
class VerticaTriggerTest extends AbstractJdbcTriggerTest {
@Test
void run() throws Exception {
Expand Down

0 comments on commit 39e9a21

Please sign in to comment.