OpenStack Tempest Puppet Module
Go to file
Jiri Podivin 1276ff514a setuptools: Disable auto discovery
The latest release of setuptools 61.0 made a breaking change[1] and
because of this change 'pip install' fails with the following error.

~~~
error: Multiple top-level packages discovered in a flat-layout:
['lib', 'spec', 'manifests', 'releasenotes'].
~~~

Users that don't set 'packages', 'py_modules', or configuration'
are still likely to observe the auto-discovery behavior, which may
halt the build if the project contains multiple directories and/or
multiple Python files directly under the project root.

To disable auto discovery, one can do below in setup.py

~~~
setuptools.setup(..,packages=[],..)
~~~

or

~~~
setuptools.setup(..,py_modules=[],..)
~~~

[1] https://github.com/pypa/setuptools/issues/3197

Note setup.py is not used to install puppet modules. However it is used
to generate a release note, thus should be fixed.

Conflicts:
	setup.py

Signed-off-by: Jiri Podivin <jpodivin@redhat.com>
Change-Id: Ib87bb6dffe1f7c17925ba5969c26ed2b253a8ad6
(cherry picked from commit 197d8a46ca)
(cherry picked from commit da6ec76274)
2022-11-03 00:51:17 +09:00
doc Update sphinx to the latest version 2021-03-27 15:31:57 +08:00
examples Convert all class usage to relative names 2019-12-08 23:22:18 +01:00
lib/puppet Add python3-openstackclient to autorequire 2019-02-04 13:19:28 +01:00
manifests Change git url for Tempest to opendev.org 2022-08-09 00:06:45 +00:00
releasenotes Change git url for Tempest to opendev.org 2022-08-09 00:06:45 +00:00
spec Change git url for Tempest to opendev.org 2022-08-09 00:06:45 +00:00
.gitignore Dissuade .gitignore references to personal tools 2018-10-08 11:39:25 +08:00
.gitreview Update .gitreview for stable/wallaby 2021-04-01 09:37:44 +00:00
.rspec Adding puppet-rspec tests 2014-03-26 12:44:02 +01:00
.zuul.yaml Add Puppet Litmus 2020-08-31 21:59:37 +02:00
CHANGELOG.md Release 8.0.0 2016-03-23 16:07:57 -04:00
CONTRIBUTING.rst [ussuri][goal] Add CONTRIBUTING.rst 2020-05-10 22:53:44 +02:00
Gemfile Use openstack_spec_helper from zuul checkout 2020-08-30 23:06:29 +02:00
LICENSE Update LICENSE 2018-04-06 20:15:14 +08:00
README.md Add Puppet Litmus 2020-08-31 21:59:37 +02:00
Rakefile Use puppet-openstack_spec_helper for Rakefile & spec_helper_acceptance 2016-01-18 09:11:33 -05:00
bindep.txt modulesync: sync and add nodepool-bionic for beaker 2018-07-23 14:26:05 +02:00
metadata.json Prepare the final wallaby release 2022-10-24 14:43:12 +09:00
setup.cfg Change openstack-dev to openstack-discuss 2018-12-02 18:20:43 +01:00
setup.py setuptools: Disable auto discovery 2022-11-03 00:51:17 +09:00
tox.ini Update TOX_CONSTRAINTS_FILE for stable/wallaby 2021-04-01 09:37:47 +00:00

README.md

Team and repository tags

Team and repository tags

Tempest

Table of Contents

  1. Overview - What is the AODH module?
  2. Development - Guide for contributing to the module
  3. Contributors - Those with commits
  4. Release Notes - Release notes for the project
  5. Repository - The project source code repository

Overview

Module for installing and configuring tempest.

Tempest is the test suite that can be used to run integration tests on an installed openstack environment.

This module assumes the provisioning of the initial OpenStack resources has been done beforehand.

Development

Developer documentation for the entire puppet-openstack project.

Contributors

Release Notes

Repository