ebb0ad9b3c
The Horizon integrated test suite is a lost cause, has been non-voting for quite some time and is never going to be fixed and maintained. Change-Id: Ie7b538757a71ddd7aa9070ae93d3d05d5657bd17
63 lines
1.6 KiB
YAML
63 lines
1.6 KiB
YAML
- job-template:
|
|
name: gate-horizon-selenium-headless-{node}
|
|
node: '{node}'
|
|
|
|
builders:
|
|
- zuul-git-prep-upper-constraints
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
NOSE_WITH_XUNIT=1 tox -e selenium-headless
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: gate-horizon-selenium-headless-legacy-{node}
|
|
node: '{node}'
|
|
|
|
builders:
|
|
- zuul-git-prep-upper-constraints
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
NOSE_WITH_XUNIT=1 tox -evenv -- /bin/bash run_tests.sh -N --only-selenium --selenium-headless
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: gate-horizon-dsvm-tempest-plugin-{node}
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 100
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_TEMPEST_REGEX=horizon
|
|
export DEVSTACK_LOCAL_CONFIG="export TEMPEST_PLUGINS='/opt/stack/new/tempest-horizon'"
|
|
export PROJECTS="openstack/tempest-horizon $PROJECTS"
|
|
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|