a539f306c1
1. Specify Sphinx version while using Python2.7 2. Fix mock verification in test_check_health_with_api_info 3. Move rally-verify job under python3 env 4. Switch tempest verifier default source to opendev.org Change-Id: I8f92ef87722d057514d0906d068ddaadd88c8758
22 lines
556 B
YAML
22 lines
556 B
YAML
- 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
|