Luigi Toscano bd66017874 Native Zuul v3 dashboard-integration test
- create a native Zuul v3 job, and move it to experimental
  until it works;
- install libav-utils on dpkg systems and enable the capture
  of the video;
- adapt to the changes in OverviewPage:
  * go_to_system_flavorspage -> go_to_admin_compute_flavorspage
  * go_to_compute_imagespage -> go_to_project_compute_imagespage

The job is failing right now, but apart the increased running time,
at least the tests are now executed.

Story: 2001686
Task: 8662

Change-Id: I311203779bd3e6c6660cfe1b84e89c7dc0825c98
2019-02-21 00:47:34 +01:00

22 lines
853 B
YAML

---
- name: download the ubuntu image file
get_url:
url: "{{ sahara_cloud_image }}"
dest: "{{ sahara_cloud_image_remote_path }}"
# enable legacy panels (two files in local/local_settings.d and a new setting file
# for the integration tests)
- name: setup the old behavior of tables for testing purposes
copy:
src: "{{ devstack_base_dir }}/horizon/openstack_dashboard/local/local_settings.d/{{ item }}.example"
dest: "{{ devstack_base_dir }}/horizon/openstack_dashboard/local/local_settings.d/{{ item }}"
remote_src: yes
with_items:
- '_20_integration_tests_scaffolds.py'
- '_2010_integration_tests_deprecated.py'
- name: setup the old behavior of panels for testing purposes
copy:
src: legacy_panels.conf
dest: "{{ devstack_base_dir }}/horizon/openstack_dashboard/test/integration_tests/local-horizon.conf"