Re-enable rally-verify-tempest

Change-Id: Icbe31fc82eb7b7731b43c1346201b642be76ea4e
This commit is contained in:
Andrey Kurilin 2023-08-20 11:11:31 +02:00
parent a2bad02968
commit 5827d34499
2 changed files with 23 additions and 23 deletions

View File

@ -80,7 +80,7 @@
voting: false
- rally-task-zaqar:
voting: false
#- rally-verify-tempest
- rally-verify-tempest
gate:
jobs:
- rally-tox-cover
@ -119,7 +119,7 @@
- rally_openstack/task/scenarios/neutron/trunk.py
- rally_openstack/task/scenarios/neutron/network.py
- tests/ci/playbooks
#- rally-verify-tempest
- rally-verify-tempest
post:
jobs:
- rally-openstack-docker-build-and-push:

View File

@ -1,21 +1,21 @@
- hosts: all
roles:
- run-devstack
- hosts: controller
tasks:
- name: Prepare env deployment for tempest
shell:
cmd: |
. /opt/stack/.rally/openrc admin admin
export OS_CACERT=/opt/stack/data/ca-bundle.pem
rally env create --from-sysenv --name tempest
rally env check
executable: /bin/bash
- name: Run Rally verify
shell:
cmd: |
cd {{ zuul.project.src_dir }}
python3 tests/ci/rally_verify.py
executable: /bin/bash
- hosts: all
roles:
- run-devstack
- hosts: controller
tasks:
- name: Prepare env deployment for tempest
shell:
cmd: |
. /opt/stack/.rally/openrc admin admin
export OS_CACERT=/opt/stack/data/ca-bundle.pem
rally env create --from-sysenv --name tempest
rally env check
executable: /bin/bash
- name: Run Rally verify
shell: |
. /opt/stack/data/venv/bin/activate
python3 tests/ci/rally_verify.py
args:
chdir: "{{ zuul.project.src_dir }}"