Merge "Add Zuul v3 native unit-tests"

This commit is contained in:
Zuul 2018-02-12 23:24:54 +00:00 committed by Gerrit Code Review
commit 3f2f418fbf
3 changed files with 36 additions and 0 deletions

View File

@ -193,11 +193,22 @@
- playbooks/tox/pre.yaml
run: playbooks/tox/run.yaml
- job:
name: devstack-unit-tests
description: |
Runs unit tests on devstack project.
It runs ``run_tests.sh``.
pre-run: playbooks/unit-tests/pre.yaml
run: playbooks/unit-tests/run.yaml
- project:
check:
jobs:
- devstack
- devstack-multinode
- devstack-unit-tests
gate:
jobs:
- devstack
- devstack-unit-tests

View File

@ -0,0 +1,13 @@
- hosts: all
tasks:
- name: Install prerequisites
shell:
chdir: '{{ zuul.project.src_dir }}'
executable: /bin/bash
cmd: |
set -e
set -x
echo "IPV4_ADDRS_SAFE_TO_USE=10.1.0.0/20" >> localrc
./tools/install_prereqs.sh

View File

@ -0,0 +1,12 @@
- hosts: all
tasks:
- name: Run run_tests.sh
shell:
chdir: '{{ zuul.project.src_dir }}'
executable: /bin/bash
cmd: |
set -e
set -x
./run_tests.sh