Skip to content

Commit de1b5d0

Browse files
committed
Do not run some Coherence RAG tests on Windows
[git-p4: depot-paths = "//dev/coherence-ce/main/": change = 118722]
1 parent 43cf96d commit de1b5d0

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

prj/coherence-rag-parent/coherence-rag/src/test/java/com/oracle/coherence/rag/api/KbIT.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,15 @@
2020
import java.io.File;
2121
import java.util.concurrent.TimeUnit;
2222

23+
import org.junit.jupiter.api.Assumptions;
2324
import org.junit.jupiter.api.BeforeAll;
2425
import org.junit.jupiter.api.MethodOrderer;
2526
import org.junit.jupiter.api.Order;
2627
import org.junit.jupiter.api.Test;
2728
import org.junit.jupiter.api.TestInstance;
2829
import org.junit.jupiter.api.TestMethodOrder;
30+
import org.junit.jupiter.api.condition.DisabledOnOs;
31+
import org.junit.jupiter.api.condition.OS;
2932

3033
import static org.hamcrest.MatcherAssert.assertThat;
3134
import static org.hamcrest.Matchers.anyOf;
@@ -36,6 +39,7 @@
3639
@HelidonTest
3740
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
3841
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
42+
@DisabledOnOs(OS.WINDOWS)
3943
class KbIT
4044
{
4145

prj/coherence-rag-parent/coherence-rag/src/test/java/com/oracle/coherence/rag/api/StoreIT.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
import org.junit.jupiter.api.Test;
2828
import org.junit.jupiter.api.TestInstance;
2929
import org.junit.jupiter.api.TestMethodOrder;
30+
import org.junit.jupiter.api.condition.DisabledOnOs;
31+
import org.junit.jupiter.api.condition.OS;
3032

3133
import static org.hamcrest.MatcherAssert.assertThat;
3234
import static org.hamcrest.Matchers.anyOf;
@@ -37,6 +39,7 @@
3739
@HelidonTest
3840
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
3941
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
42+
@DisabledOnOs(OS.WINDOWS)
4043
class StoreIT
4144
{
4245

0 commit comments

Comments
 (0)