summaryrefslogtreecommitdiffstats
path: root/utils/test
diff options
context:
space:
mode:
authorBrenton Leanhardt <bleanhar@redhat.com>2015-11-10 16:17:37 -0500
committerBrenton Leanhardt <bleanhar@redhat.com>2015-11-10 16:17:37 -0500
commit825ef4ce54e0be3987806ff3454e23208b564140 (patch)
tree3713d7a25bd6c6a063cd0cea8a0ecdf7b2bd76fb /utils/test
parent6ee3d4deb200219098596562e502ca34e550f6fd (diff)
parent7f4cafed723058ab7e79d11a826fca031d1d2aae (diff)
downloadopenshift-825ef4ce54e0be3987806ff3454e23208b564140.tar.gz
openshift-825ef4ce54e0be3987806ff3454e23208b564140.tar.bz2
openshift-825ef4ce54e0be3987806ff3454e23208b564140.tar.xz
openshift-825ef4ce54e0be3987806ff3454e23208b564140.zip
Merge pull request #860 from smunilla/disable_container_based_install
atomic-openshift-installer: Remove question for container install
Diffstat (limited to 'utils/test')
-rw-r--r--utils/test/cli_installer_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/test/cli_installer_tests.py b/utils/test/cli_installer_tests.py
index fcefcdff3..d58539b18 100644
--- a/utils/test/cli_installer_tests.py
+++ b/utils/test/cli_installer_tests.py
@@ -332,7 +332,7 @@ class AttendedCliTests(OOCliFixture):
for (host, is_master) in hosts:
inputs.append(host)
inputs.append('y' if is_master else 'n')
- inputs.append('rpm')
+ #inputs.append('rpm')
if i < len(hosts) - 1:
inputs.append('y') # Add more hosts
else:
@@ -349,7 +349,7 @@ class AttendedCliTests(OOCliFixture):
for (host, is_master) in add_nodes:
inputs.append(host)
inputs.append('y' if is_master else 'n')
- inputs.append('rpm')
+ #inputs.append('rpm')
if i < len(add_nodes) - 1:
inputs.append('y') # Add more hosts
else: