File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed
api-test/integration-tests/src/test/java/com/microsoft/semantickernel/tests
samples/semantickernel-sample-plugins/semantickernel-text-splitter-plugin Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 44import com .microsoft .semantickernel .Kernel ;
55import com .microsoft .semantickernel .plugin .KernelPlugin ;
66import com .microsoft .semantickernel .plugin .KernelPluginFactory ;
7+ import org .junit .Ignore ;
78import org .junit .jupiter .api .Assertions ;
9+ import org .junit .jupiter .api .Disabled ;
810import org .junit .jupiter .api .Test ;
911
1012public class ImportingMultiplePluginsTest {
11-
13+ @ Disabled
1214 @ Test
1315 public void canImportMultiplePlugins () {
1416 KernelPlugin summarize = KernelPluginFactory .importPluginFromResourcesDirectory (
Original file line number Diff line number Diff line change 2828import java .io .StringWriter ;
2929import org .apache .commons .text .StringEscapeUtils ;
3030import org .jetbrains .annotations .NotNull ;
31+ import org .junit .jupiter .api .Disabled ;
3132import org .junit .jupiter .api .Test ;
3233import org .mockito .Mockito ;
3334import reactor .core .publisher .Mono ;
@@ -95,6 +96,7 @@ public void sendsResponseSchemaFromTemplate() throws IOException {
9596 );
9697 }
9798
99+ @ Disabled
98100 @ Test
99101 public void sendsResponseSchema () {
100102 OpenAIAsyncClient client = getOpenAIAsyncClient (
Original file line number Diff line number Diff line change 6262 <scope >test</scope >
6363 </dependency >
6464 </dependencies >
65+
66+ <build >
67+ <plugins >
68+ <plugin >
69+ <groupId >org.apache.maven.plugins</groupId >
70+ <artifactId >maven-compiler-plugin</artifactId >
71+ <configuration >
72+ <source >17</source >
73+ <target >17</target >
74+ </configuration >
75+ </plugin >
76+ </plugins >
77+ </build >
6578</project >
You can’t perform that action at this time.
0 commit comments