CI: run ansible-test sanity checks
The script has been adapted from one in ansible-collections-openstack. Change-Id: I494b6d62c67ab66255f7a6a9e229f14021d48800
This commit is contained in:
parent
a3acb4efb0
commit
54d545a614
@ -18,10 +18,13 @@ homepage: https://opendev.org/openstack/ansible-collection-kolla
|
|||||||
issues: https://launchpad.net/ansible-collection-kolla
|
issues: https://launchpad.net/ansible-collection-kolla
|
||||||
build_ignore:
|
build_ignore:
|
||||||
- "*.tar.gz"
|
- "*.tar.gz"
|
||||||
|
- doc
|
||||||
|
- releasenotes
|
||||||
- requirements.txt
|
- requirements.txt
|
||||||
- setup.cfg
|
- setup.cfg
|
||||||
- setup.py
|
- setup.py
|
||||||
- test-requirements.txt
|
- test-requirements.txt
|
||||||
|
- tools
|
||||||
- tox.ini
|
- tox.ini
|
||||||
- zuul.d
|
- zuul.d
|
||||||
- .gitignore
|
- .gitignore
|
||||||
|
@ -13,3 +13,6 @@ python-subunit>=0.0.18 # Apache-2.0/BSD
|
|||||||
oslotest>=1.10.0 # Apache-2.0
|
oslotest>=1.10.0 # Apache-2.0
|
||||||
stestr>=1.0.0 # Apache-2.0
|
stestr>=1.0.0 # Apache-2.0
|
||||||
testtools>=1.4.0 # MIT
|
testtools>=1.4.0 # MIT
|
||||||
|
|
||||||
|
# sanity testing
|
||||||
|
ansible-core
|
||||||
|
41
tools/run-ansible-sanity.sh
Executable file
41
tools/run-ansible-sanity.sh
Executable file
@ -0,0 +1,41 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Copyright 2020 Red Hat, Inc.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||||
|
# not use this file except in compliance with the License. You may obtain
|
||||||
|
# a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
|
# License for the specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
|
||||||
|
# Adapted from a script in ansible-collections-openstack:
|
||||||
|
# https://opendev.org/openstack/ansible-collections-openstack/src/commit/15f73aa72e79c57c422a41aa5876ff334a95c67e/tools/run-ansible-sanity.sh
|
||||||
|
|
||||||
|
set -eu
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
TOXDIR=${1:-.}
|
||||||
|
ANSIBLE_COLLECTIONS_PATH=$(mktemp -d)
|
||||||
|
echo "Executing ansible-test sanity checks in ${ANSIBLE_COLLECTIONS_PATH}"
|
||||||
|
|
||||||
|
trap "rm -rf ${ANSIBLE_COLLECTIONS_PATH}" err exit
|
||||||
|
|
||||||
|
PY_VER=$(python3 -c "from platform import python_version;print(python_version())" | cut -f 1,2 -d".")
|
||||||
|
echo "Running test with Python version ${PY_VER}"
|
||||||
|
|
||||||
|
rm -rf "${ANSIBLE_COLLECTIONS_PATH}"
|
||||||
|
mkdir -p ${ANSIBLE_COLLECTIONS_PATH}/ansible_collections/openstack/kolla
|
||||||
|
ansible-galaxy --version
|
||||||
|
ansible-galaxy collection build --force
|
||||||
|
ansible-galaxy collection install openstack-kolla-*.tar.gz --collections-path ${ANSIBLE_COLLECTIONS_PATH} --force
|
||||||
|
cd ${ANSIBLE_COLLECTIONS_PATH}/ansible_collections/openstack/kolla/
|
||||||
|
echo "Running ansible-test with version:"
|
||||||
|
ansible --version
|
||||||
|
ansible-test sanity -v \
|
||||||
|
--venv \
|
||||||
|
--python ${PY_VER}
|
6
tox.ini
6
tox.ini
@ -76,6 +76,7 @@ commands =
|
|||||||
sphinx-build -n -W --keep-going -b html releasenotes/source releasenotes/build/html
|
sphinx-build -n -W --keep-going -b html releasenotes/source releasenotes/build/html
|
||||||
|
|
||||||
[testenv:linters]
|
[testenv:linters]
|
||||||
|
passenv = HOME
|
||||||
deps =
|
deps =
|
||||||
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
|
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
|
||||||
-r{toxinidir}/test-requirements.txt
|
-r{toxinidir}/test-requirements.txt
|
||||||
@ -87,6 +88,7 @@ commands =
|
|||||||
{[testenv:doc8]commands}
|
{[testenv:doc8]commands}
|
||||||
{[testenv:bandit]commands}
|
{[testenv:bandit]commands}
|
||||||
{[testenv:yamllint]commands}
|
{[testenv:yamllint]commands}
|
||||||
|
{[testenv:ansible-sanity]commands}
|
||||||
|
|
||||||
[testenv:pep8]
|
[testenv:pep8]
|
||||||
deps = {[testenv:linters]deps}
|
deps = {[testenv:linters]deps}
|
||||||
@ -117,3 +119,7 @@ commands = bandit --skip B303 -r plugins tests
|
|||||||
[testenv:yamllint]
|
[testenv:yamllint]
|
||||||
deps = {[testenv:linters]deps}
|
deps = {[testenv:linters]deps}
|
||||||
commands = yamllint -s .
|
commands = yamllint -s .
|
||||||
|
|
||||||
|
[testenv:ansible-sanity]
|
||||||
|
deps = {[testenv:linters]deps}
|
||||||
|
commands = {toxinidir}/tools/run-ansible-sanity.sh {toxinidir}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
- project:
|
- project:
|
||||||
templates:
|
templates:
|
||||||
|
- ansible-role-jobs
|
||||||
- publish-openstack-docs-pti
|
- publish-openstack-docs-pti
|
||||||
gate:
|
gate:
|
||||||
queue: kolla
|
queue: kolla
|
||||||
|
Loading…
x
Reference in New Issue
Block a user