Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@

import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.extension.RegisterExtension;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
Expand Down Expand Up @@ -839,6 +840,7 @@ void testComplicatedFlinkUdf(ValuesDataSink.SinkApi sinkApi, String language) th

@ParameterizedTest
@MethodSource("testParams")
@Disabled("For manual test as there is a limit for quota.")
void testTransformWithModel(ValuesDataSink.SinkApi sinkApi) throws Exception {
FlinkPipelineComposer composer = FlinkPipelineComposer.ofMiniCluster();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@
import org.apache.flink.cdc.common.udf.UserDefinedFunctionContext;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

/** A test for {@link OpenAIChatModel}. */
public class TestOpenAIChatModel {
@Test
@Disabled("For manual test as there is a limit for quota.")
public void testEval() {
OpenAIChatModel openAIChatModel = new OpenAIChatModel();
Configuration configuration = new Configuration();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@
import org.apache.flink.cdc.common.udf.UserDefinedFunctionContext;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

/** A test for {@link OpenAIEmbeddingModel}. */
public class TestOpenAIEmbeddingModel {

@Test
@Disabled("For manual test as there is a limit for quota.")
public void testEval() {
OpenAIEmbeddingModel openAIEmbeddingModel = new OpenAIEmbeddingModel();
Configuration configuration = new Configuration();
Expand Down
Loading