summaryrefslogtreecommitdiff
path: root/functionaltests/common/config.py
diff options
context:
space:
mode:
authorGhanshyam Mann <gmann@ghanshyammann.com>2022-04-30 15:31:17 -0500
committerDouglas Mendizábal <dmendiza@redhat.com>2022-05-13 16:15:54 -0500
commit8e3a391fd63c0a319071fc55996faab3e6699a0f (patch)
treeb07606a30763f4b6d8827da6752f4f71c976e88f /functionaltests/common/config.py
parentad49c406fe67459a4a667c78ad37782fb14bdbb7 (diff)
downloadpython-barbicanclient-8e3a391fd63c0a319071fc55996faab3e6699a0f.tar.gz
Drop lower-constraints.txt and its testing
As discussed in TC PTG[1] and TC resolution[2], we are dropping the lower-constraints.txt file and its testing. We will keep lower bounds in the requirements.txt file but with a note that these are not tested lower bounds and we try our best to keep them updated. This patch also fixes a broken test by updating the maximum payload size to match the current maximum in Barbican. [3] This patch also skips an additional broken test. It will be fixed in a separate patch. [1] https://etherpad.opendev.org/p/tc-zed-ptg#L326 [2] https://governance.openstack.org/tc/resolutions/20220414-drop-lower-constraints.html#proposal [3] https://opendev.org/openstack/barbican/src/branch/stable/yoga/barbican/common/config.py#L33 Change-Id: Id192b8eef2c2518b8a89f200727bd03c47dbd07e
Diffstat (limited to 'functionaltests/common/config.py')
-rw-r--r--functionaltests/common/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functionaltests/common/config.py b/functionaltests/common/config.py
index dbe4f29..f557011 100644
--- a/functionaltests/common/config.py
+++ b/functionaltests/common/config.py
@@ -48,7 +48,7 @@ def setup_config(config_file=''):
cfg.StrOpt('project_name', default='admin'),
cfg.StrOpt('project_id', default='admin'),
cfg.StrOpt('project_domain_name', default='Default'),
- cfg.IntOpt('max_payload_size', default=10000)
+ cfg.IntOpt('max_payload_size', default=20000)
]
TEST_CONF.register_group(keymanager_group)
TEST_CONF.register_opts(keymanager_options, group=keymanager_group)