
The run_tests.sh was just blindly copied from tuskar_ui and didn't work properly or run the local tests. This patch fixes the paths and adds local settings.py file that loads both plugins. Change-Id: I1b6c0a7a149201325638db39196f3c113a881820
10 lines
345 B
Python
10 lines
345 B
Python
import openstack_dashboard.enabled
|
|
from openstack_dashboard.utils import settings
|
|
import test.enabled
|
|
from tuskar_ui.test.settings import * # noqa
|
|
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS) # Make sure it's mutable
|
|
settings.update_dashboards([openstack_dashboard.enabled, test.enabled],
|
|
HORIZON_CONFIG, INSTALLED_APPS)
|