08d1cc5b39
Skip discovering of cloudvalidation and configuration tests for 6.0 cluster. Change-Id: Ife47592a13a31e77a6846e23ed4f340af7adeb9c Closes-Bug: #1450135
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# Copyright 2015 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
'''
|
|
Main purpose of following attribute is
|
|
to supply general information about test set.
|
|
This information will be stored in ostf database
|
|
in test_sets table.
|
|
'''
|
|
__profile__ = {
|
|
"test_runs_ordering_priority": 6,
|
|
"id": "configuration",
|
|
"driver": "nose",
|
|
"test_path": "fuel_health/tests/configuration",
|
|
"cleanup_path": "fuel_health.cleanup",
|
|
"description": "Configuration tests. Duration 30 sec - 2 min",
|
|
"exclusive_testsets": [],
|
|
"available_since_release": "2014.2-6.1",
|
|
}
|