Skip to content
Snippets Groups Projects
Commit c0464536 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

QA: Disable OOB tests for virtual clusters


They do not work properly at the moment.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarBernardo Dal Seno <bdalseno@google.com>
parent 734fd6b4
No related branches found
No related tags found
No related merge requests found
...@@ -186,7 +186,8 @@ def RunClusterTests(): ...@@ -186,7 +186,8 @@ def RunClusterTests():
("cluster-master-failover", qa_cluster.TestClusterMasterFailover), ("cluster-master-failover", qa_cluster.TestClusterMasterFailover),
("cluster-master-failover", ("cluster-master-failover",
qa_cluster.TestClusterMasterFailoverWithDrainedQueue), qa_cluster.TestClusterMasterFailoverWithDrainedQueue),
("cluster-oob", qa_cluster.TestClusterOob), (["cluster-oob", qa_config.NoVirtualCluster],
qa_cluster.TestClusterOob),
("rapi", qa_rapi.TestVersion), ("rapi", qa_rapi.TestVersion),
("rapi", qa_rapi.TestEmptyCluster), ("rapi", qa_rapi.TestEmptyCluster),
("rapi", qa_rapi.TestRapiQuery), ("rapi", qa_rapi.TestRapiQuery),
...@@ -321,7 +322,7 @@ def RunCommonNodeTests(): ...@@ -321,7 +322,7 @@ def RunCommonNodeTests():
""" """
RunTestIf("node-volumes", qa_node.TestNodeVolumes) RunTestIf("node-volumes", qa_node.TestNodeVolumes)
RunTestIf("node-storage", qa_node.TestNodeStorage) RunTestIf("node-storage", qa_node.TestNodeStorage)
RunTestIf("node-oob", qa_node.TestOutOfBand) RunTestIf(["node-oob", qa_config.NoVirtualCluster], qa_node.TestOutOfBand)
def RunGroupListTests(): def RunGroupListTests():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment