Skip to content

Commit

Permalink
Disabled non-security tests from executing during security-enabled CI…
Browse files Browse the repository at this point in the history
… workflows. (#1632) (#1634)

* Disabled non-security tests from executing during security-enabled CI workflows.



* Disabled non-security tests from executing during security-enabled CI workflows.



* Disabled non-security tests from executing during security-enabled CI workflows.



---------


(cherry picked from commit 50df588)

Signed-off-by: AWSHurneyt <hurneyt@amazon.com>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 290f362 commit 0eb95e9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sample-remote-monitor-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ task integTest(type: RestIntegTestTask) {
description = "Run tests against a cluster"
testClassesDirs = sourceSets.test.output.classesDirs
classpath = sourceSets.test.runtimeClasspath

if (System.getProperty("https") == null || System.getProperty("https") == "false") {
filter {
includeTestsMatching "org.opensearch.alerting.SampleRemoteMonitorIT"
}
}
}
tasks.named("check").configure { dependsOn(integTest) }

Expand Down

0 comments on commit 0eb95e9

Please sign in to comment.