We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25eec30 commit 50df588Copy full SHA for 50df588
sample-remote-monitor-plugin/build.gradle
@@ -69,6 +69,12 @@ task integTest(type: RestIntegTestTask) {
69
description = "Run tests against a cluster"
70
testClassesDirs = sourceSets.test.output.classesDirs
71
classpath = sourceSets.test.runtimeClasspath
72
+
73
+ if (System.getProperty("https") == null || System.getProperty("https") == "false") {
74
+ filter {
75
+ includeTestsMatching "org.opensearch.alerting.SampleRemoteMonitorIT"
76
+ }
77
78
}
79
tasks.named("check").configure { dependsOn(integTest) }
80
0 commit comments