13084694be
The neutron tox config now has a gate-specific tox env (tox -e dsvm-functional) that configures the environment variables necessary to run tests that require the use of sudo+rootwrap. Change-Id: I25b50e3c0ddb8714387e0e3902c237a0a41a3443 Closes-bug: #1336172
42 lines
1.3 KiB
YAML
42 lines
1.3 KiB
YAML
- job-template:
|
|
name: '{pipeline}-neutron-dsvm-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_TIMEOUT=120
|
|
export DEVSTACK_GATE_TEMPEST=0
|
|
export DEVSTACK_GATE_EXERCISES=0
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
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 {{
|
|
$BASE/new/devstack/unstack.sh
|
|
cd $BASE/new/neutron
|
|
# Run tests as the stack user to allow sudo+rootwrap.
|
|
sudo chown -R stack:stack $BASE/new/neutron
|
|
echo "Running neutron functional test suite"
|
|
sudo -H -u stack tox -e dsvm-functional
|
|
}}
|
|
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:
|
|
- devstack-logs
|
|
- console-log
|