diff options
author | Ghanshyam Mann <gmann@ghanshyammann.com> | 2022-04-30 15:31:17 -0500 |
---|---|---|
committer | Douglas Mendizábal <dmendiza@redhat.com> | 2022-05-13 16:15:54 -0500 |
commit | 8e3a391fd63c0a319071fc55996faab3e6699a0f (patch) | |
tree | b07606a30763f4b6d8827da6752f4f71c976e88f /barbicanclient | |
parent | ad49c406fe67459a4a667c78ad37782fb14bdbb7 (diff) | |
download | python-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 'barbicanclient')
-rw-r--r-- | barbicanclient/tests/test_barbican.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/barbicanclient/tests/test_barbican.py b/barbicanclient/tests/test_barbican.py index dab036e..22dfca4 100644 --- a/barbicanclient/tests/test_barbican.py +++ b/barbicanclient/tests/test_barbican.py @@ -13,6 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. import six +from testtools import testcase from barbicanclient import barbican as barb from barbicanclient.barbican import Barbican @@ -48,6 +49,7 @@ class WhenTestingBarbicanCLI(test_client.BaseEntityResource): self.assertIsNotNone(client) return client + @testcase.skip("https://storyboard.openstack.org/#!/story/2010022") def test_should_show_usage_with_help_flag(self): e = self.assertRaises(SystemExit, self.barbican.run, ['-h']) self.assertEqual(0, e.code) |