Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions qa-tests-backend/src/test/groovy/PolicyFieldsTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ import org.junit.Assume
import org.junit.experimental.categories.Category
import services.AlertService
import services.PolicyService
import spock.lang.IgnoreIf
import spock.lang.Shared
import spock.lang.Unroll
import util.Env

// Scanner OOMs on this test in some Openshift jobs. See ROX-12814.
@IgnoreIf({ Env.mustGetOrchestratorType() == OrchestratorTypes.OPENSHIFT })
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about only disabling for OSD GCP? Other openshifts do not have this OOM IIRC?

Suggested change
@IgnoreIf({ Env.mustGetOrchestratorType() == OrchestratorTypes.OPENSHIFT })
@IgnoreIf({ Env.CI_JOBNAME.contains("osd-gcp") })

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are mentions of failures on rosa and openshift-oldest too in the ticket :-/

class PolicyFieldsTest extends BaseSpecification {

// NOTE: this is populated by registerDeployments call, do not manually
Expand Down