We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f632856 commit 656c107Copy full SHA for 656c107
core/redis-smart-cache-jdbc/src/test/java/com/redis/smartcache/jdbc/MySQLTests.java
@@ -14,6 +14,8 @@
14
import org.junit.jupiter.api.Assertions;
15
import org.junit.jupiter.api.BeforeAll;
16
import org.junit.jupiter.api.Test;
17
+import org.junit.jupiter.api.condition.DisabledOnOs;
18
+import org.junit.jupiter.api.condition.OS;
19
import org.testcontainers.containers.JdbcDatabaseContainer;
20
import org.testcontainers.containers.MySQLContainer;
21
import org.testcontainers.junit.jupiter.Container;
@@ -26,6 +28,7 @@
26
28
import com.redis.smartcache.core.config.Config;
27
29
30
@SuppressWarnings("unchecked")
31
+@DisabledOnOs(value = OS.LINUX)
32
class MySQLTests extends AbstractIntegrationTests {
33
34
@Container
0 commit comments