summaryrefslogtreecommitdiffstats
path: root/test/integration
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2017-09-18 12:58:20 -0700
committerGitHub <noreply@github.com>2017-09-18 12:58:20 -0700
commite067d79bdbbd7d94dbc2d86c7dd4a20ac787f704 (patch)
tree9485f38ac794add00295a3654825487cf24c8632 /test/integration
parent67191c2b9dea3ef7399773b96c7fc1d827498eac (diff)
parent2dc0fe2a75c2a09043ffac9c19a2c0e8bd0e38ed (diff)
downloadopenshift-e067d79bdbbd7d94dbc2d86c7dd4a20ac787f704.tar.gz
openshift-e067d79bdbbd7d94dbc2d86c7dd4a20ac787f704.tar.bz2
openshift-e067d79bdbbd7d94dbc2d86c7dd4a20ac787f704.tar.xz
openshift-e067d79bdbbd7d94dbc2d86c7dd4a20ac787f704.zip
Merge pull request #5430 from ashcrow/always-required-new-variables
Automatic merge from submit-queue Always required new variables Related to https://bugzilla.redhat.com/show_bug.cgi?id=1451023
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/openshift_health_checker/common.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/openshift_health_checker/common.go b/test/integration/openshift_health_checker/common.go
index a92d6861d..8b79c48cb 100644
--- a/test/integration/openshift_health_checker/common.go
+++ b/test/integration/openshift_health_checker/common.go
@@ -25,7 +25,7 @@ func (p PlaybookTest) Run(t *testing.T) {
// A PlaybookTest is intended to be run in parallel with other tests.
t.Parallel()
- cmd := exec.Command("ansible-playbook", "-i", "/dev/null", p.Path)
+ cmd := exec.Command("ansible-playbook", "-e", "testing_skip_some_requirements=1", "-i", "/dev/null", p.Path)
cmd.Env = append(os.Environ(), "ANSIBLE_FORCE_COLOR=1")
b, err := cmd.CombinedOutput()