Merge "Fix tempest and pep8 tests"

This commit is contained in:
Zuul 2020-05-13 14:02:07 +00:00 committed by Gerrit Code Review
commit b9d48af5ca
4 changed files with 5 additions and 5 deletions

View File

@ -97,14 +97,13 @@
- ^openstack_dashboard/.*/[^/]*\.spec\.js$
- ^horizon/static/.*/[^/]*\.spec\.js$
vars: &base_vars
devstack_localrc:
TEMPEST_PLUGINS: "{{ ansible_user_dir }}/src/opendev.org/openstack/tempest-horizon"
USE_PYTHON3: true
devstack_services:
horizon: true
tempest: true
tempest_concurrency: 2
tempest_test_regex: horizon
tempest_plugins:
- tempest-horizon
tox_envlist: all
- job:

View File

@ -127,6 +127,7 @@ class VolumeBackup(BaseCinderAPIResourceWrapper):
'created_at', 'volume_id', 'availability_zone', 'snapshot_id']
_volume = None
_snapshot = None
@property
def volume(self):
return self._volume

View File

@ -37,7 +37,7 @@ monkeypatch_escape()
# Load default values
# pylint: disable=wrong-import-position
from openstack_dashboard.defaults import * # noqa: F403,H303
from openstack_dashboard.defaults import * # noqa: E402,F403,H303
_LOG = logging.getLogger(__name__)

View File

@ -27,7 +27,7 @@ from openstack_dashboard.utils import settings as settings_utils
monkeypatch_escape()
# Load default values
from openstack_dashboard.defaults import * # noqa: F403,H303
from openstack_dashboard.defaults import * # noqa: E402,F403,H303
WEBROOT = '/'