57da8455f1
https://review.opendev.org/q/topic:ooo_c7_teardown is dropping the c7 based jobs. It also removes job definitions. The last run https://zuul.openstack.org/builds?job_name=tripleo-ci-centos-7-undercloud-containers was from 1 year ago. We are removing these jobs as a part of ooo_c7_teardown[1]. Added py_modules=[] in setup.py to disable auto discovery and fix linters job. It also fixes tox molecule issues with no-changed-when warning errors. [1]. https://review.opendev.org/q/topic:ooo_c7_teardown Signed-off-by: Chandan Kumar (raukadah) <chkumar@redhat.com> Change-Id: I94d290321213ae0e097a9ac7d472878940edbafa
21 lines
712 B
Python
21 lines
712 B
Python
# Copyright Red Hat, Inc. All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
setup_requires=['pbr'],
|
|
py_modules=[],
|
|
pbr=True)
|