File: config.py

package info (click to toggle)
cinder-tempest-plugin 1.19.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 460 kB
  • sloc: python: 3,281; makefile: 22
file content (55 lines) | stat: -rw-r--r-- 2,261 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright 2016
# All Rights Reserved.
#
#    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.

from oslo_config import cfg

cinder_option = [
    cfg.BoolOpt('consistency_group',
                default=False,
                help='Enable to run Cinder volume consistency group tests'),
    cfg.BoolOpt('volume_revert',
                default=False,
                help='Enable to run Cinder volume revert tests'),
    cfg.BoolOpt('volume_image_dep_tests',
                default=True,
                help='Run tests for dependencies between images and volumes',
                deprecated_for_removal=True,
                deprecated_reason='Dependency test config setting '
                '`volume_image_dep_tests` '
                'in cinder-tempest-plugin is deprecated.Alternatively '
                '`CONF.volume_feature_enabled.enable_volume_image_dep_tests` '
                'can be used for dependency tests.'),
    cfg.BoolOpt('concurrency_tests',
                default=False,
                help='Enable or disable running concurrency tests.'),
]

# The barbican service is discovered by config_tempest [1], and will appear
# in the [service_available] group in tempest.conf. However, the 'barbican'
# option isn't registered by tempest itself, and so we may need to do it.
# This adds the ability to test CONF.service_available.barbican.
#
# [1] I96800a95f844ce7675d266e456e01620e63e347a
barbican_service_option = [
    cfg.BoolOpt('barbican',
                default=False,
                help="Whether or not barbican is expected to be available"),
]

concurrency_option = [
    cfg.IntOpt('concurrent_resource_count',
               default=5,
               help='Number of resources to create concurrently.'),
]