summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSteve Milner <smilner@redhat.com>2017-09-15 14:23:56 -0400
committerSteve Milner <smilner@redhat.com>2017-09-15 16:35:34 -0400
commit03678b1032881e67bc221d2b26874621d69f0311 (patch)
treee9459b77dd3c07e870b1cd0417cead2d241f1043 /test
parent4109627ae61ae3edc872185963c1e31942d40b79 (diff)
downloadopenshift-03678b1032881e67bc221d2b26874621d69f0311.tar.gz
openshift-03678b1032881e67bc221d2b26874621d69f0311.tar.bz2
openshift-03678b1032881e67bc221d2b26874621d69f0311.tar.xz
openshift-03678b1032881e67bc221d2b26874621d69f0311.zip
testing: Skip net vars on integration tests
Signed-off-by: Steve Milner <smilner@redhat.com>
Diffstat (limited to 'test')
-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()