4908e1647f
This change implements a native zuul runner for all role tests. The change will now run role tests, executing molecule, in the same was as tripleo-ansible. To ensure we're passing lint checks, several files have been updated to resolve lint issues which are now more strict due to the pre-commit changes. Scripts have been added to allow developers to run molecule tests on local environments. These tools will allow developers to mimic the upstream test process locally. Change-Id: I07bbcc0b331aa89dafdae5978ea2bb4859a59143 Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
19 lines
731 B
Python
19 lines
731 B
Python
# 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.
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
parser.addoption('--scenario', help='scenario setting')
|
|
parser.addoption(
|
|
'--ansible-args', help='ansible args passed into test runner.')
|