Move ec2api-tempest-plugin-functional-full

Long tests still not work, so the job is moved back to experimental section

Fix python 3 incompatibility in test_vpn_connectivity test

Change-Id: I00c498aceb0e9b8ee7c1d28af19f5868b2d55902
This commit is contained in:
Alexander Slipenchuk 2020-09-08 11:40:56 +03:00 committed by Andrey Pavlov
parent e36a352ee8
commit 65697c4fe5
3 changed files with 13 additions and 2 deletions

View File

@ -12,6 +12,9 @@
queue: ec2-api queue: ec2-api
jobs: jobs:
- ec2api-tempest-plugin-functional - ec2api-tempest-plugin-functional
experimental:
jobs:
- ec2api-tempest-plugin-functional-full
- job: - job:
name: ec2api-tempest-plugin-functional name: ec2api-tempest-plugin-functional
@ -49,4 +52,11 @@
- job: - job:
name: ec2api-tempest-plugin-functional-stein name: ec2api-tempest-plugin-functional-stein
parent: ec2api-tempest-plugin-functional parent: ec2api-tempest-plugin-functional
override-checkout: stable/stein override-checkout: stable/stein
- job:
name: ec2api-tempest-plugin-functional-full
parent: ec2api-tempest-plugin-functional
vars:
devstack_localrc:
RUN_LONG_TESTS: 1

View File

@ -60,6 +60,7 @@ class ImageTest(base.EC2TestCase):
self.assertIsNotNone(ebs.get('VolumeType')) self.assertIsNotNone(ebs.get('VolumeType'))
@decorators.idempotent_id('a139f5ea-45fd-4b3e-9a52-32de0f8c3bca') @decorators.idempotent_id('a139f5ea-45fd-4b3e-9a52-32de0f8c3bca')
@testtools.skip("flaky test")
@testtools.skipUnless(CONF.aws.ebs_image_id, "EBS image id is not defined") @testtools.skipUnless(CONF.aws.ebs_image_id, "EBS image id is not defined")
def test_describe_image_with_filters(self): def test_describe_image_with_filters(self):
image_id = CONF.aws.ebs_image_id image_id = CONF.aws.ebs_image_id

View File

@ -89,7 +89,7 @@ class VpnTest(scenario_base.BaseScenarioTest):
# NOTE(andrey-mp): gating in openstack doesn't have internet access # NOTE(andrey-mp): gating in openstack doesn't have internet access
# so we need to download this package and install it with dpkg # so we need to download this package and install it with dpkg
filename = os.path.basename(self.OPENSWAN_LINK) filename = os.path.basename(self.OPENSWAN_LINK)
f = open(filename, 'w') f = open(filename, 'wb')
f.write(content) f.write(content)
f.close() f.close()