1ea1530690
In order to prepare for implementing requirements management by the OpenStack requirements management process, and to improve the reliability and effectiveness of test execution, this patch implements some changes to the tox configuration: - The minimum tox version is increased in order to be able to use constraints for the python packages. - The OpenStack upper-constraints are used when preparing the test venv for the linters checks. - Any proxy environment variables set on the test host are passed into the venv to enable testing from behind a proxy. - The environment variables used by Ansible tests are moved into a new venv called 'ansible' and this environment is inherited by all Ansible-related tests. - The docs test will clean-up an existing build directory before executing the docs build. - The releasenotes build cannot use upper-constraints at this point, so it doesn't. - The Ansible role download will no longer ignore errors so that any problems discovered will result in a failed test. - The human readable logging callback plugin is implemented for functional testing. - The ansible test requirements are moved into tox.ini to ensure compliance for requirements.txt/test-requirements.txt for the global-requirements management contract. - The ~/.ansible directory as a whole is not deleted. Instead only the plugins and roles folders are deleted to ensure that zuul's Ansible artifacts are left in-place. - The ansible-lint version is updated to support execution against a folder, and the test now executes against the entire role to ensure that it captures all applicable files for lint testing. This is a combined port of the following: - https://review.openstack.org/323507 - https://review.openstack.org/338193 - https://review.openstack.org/332443 - https://review.openstack.org/338193 - https://review.openstack.org/339493 Change-Id: Ic8b35f61bfcc8af3b37c895e47dc6fbad063d4b4
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
|
|
---
|
|
# Copyright 2016, Rackspace US, 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.
|
|
|
|
- name: Create sahara TEMP dirs
|
|
file:
|
|
path: "{{ item.path }}/{{ program_name }}"
|
|
state: directory
|
|
owner: "{{ system_user }}"
|
|
group: "{{ system_group }}"
|
|
mode: "02755"
|
|
with_items:
|
|
- { path: "/var/run" }
|
|
- { path: "/var/lock" }
|
|
|
|
- name: Create tempfile.d entry
|
|
template:
|
|
src: "sahara-systemd-tempfiles.j2"
|
|
dest: "/etc/tmpfiles.d/sahara.conf"
|
|
mode: "0644"
|
|
owner: "root"
|
|
group: "root"
|
|
|
|
- name: Place the systemd init script
|
|
template:
|
|
src: "sahara-systemd-init.j2"
|
|
dest: "/etc/systemd/system/{{ program_name }}.service"
|
|
mode: "0644"
|
|
owner: "root"
|
|
group: "root"
|
|
register: systemd_init
|
|
|
|
- name: Reload the systemd daemon
|
|
command: "systemctl daemon-reload"
|
|
when: systemd_init | changed
|
|
notify:
|
|
- Restart sahara services
|