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)

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

Signed-off-by: AWSHurneyt <[email protected]>

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

Signed-off-by: AWSHurneyt <[email protected]>

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

Signed-off-by: AWSHurneyt <[email protected]>

---------

Signed-off-by: AWSHurneyt <[email protected]>
(cherry picked from commit 50df588)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Aug 1, 2024
1 parent b04f693 commit e9ff79b
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 e9ff79b

Please sign in to comment.