Steve Martinelli d9b03f34c8 Enable functional testing for openstackclient
Actually kick off the functional tests for openstackclient,
but keep voting to false while any kinks are worked out.

Change-Id: I24b1a17a1dab82f89448a5ec9cd8ebdc1ea9d30e
2014-09-22 22:29:10 -04:00

41 lines
1.1 KiB
YAML

- job-template:
name: '{pipeline}-osc-functional{branch-designator}'
node: '{node}'
wrappers:
- build-timeout:
timeout: 125
- timestamps
builders:
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_UNSTACK=1
export DEVSTACK_GATE_TIMEOUT=120
export DEVSTACK_GATE_TEMPEST=0
export DEVSTACK_GATE_EXERCISES=0
export DEVSTACK_GATE_INSTALL_TESTONLY=1
export BRANCH_OVERRIDE={branch-override}
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi
function post_test_hook {{
source /opt/stack/new/devstack/accrc/admin/admin
cd /opt/stack/new/python-openstackclient
tox -e func
}}
export -f post_test_hook
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
./safe-devstack-vm-gate-wrap.sh
publishers:
- test-results
- devstack-logs
- console-log