Tempest plugin for the CloudKitty project.
Go to file
Ghanshyam Mann b62f468467 Remove stable/wallaby job from master gate
stable/wallaby is in EM state. As Tempest and
plugins masters does not support EM stable branches,
QA team is pinning tempest in devstack stable/wallaby
testing[1]. With that we do not need to test the
stable/wallaby jobs on master gate.

[1] https://review.opendev.org/c/openstack/devstack/+/871782

Change-Id: Ie7db6b07101db8c5a48cf5ad13be7ccf7278b52e
2023-01-27 08:10:51 +00:00
cloudkitty_tempest_plugin Use tempest's ServiceClients rather than Manager 2021-01-03 11:22:43 +00:00
doc [ussuri][goal] Update contributor documentation 2021-05-31 20:36:23 +00:00
.coveragerc Committing initial work 2017-11-08 15:40:34 +01:00
.gitignore Committing initial work 2017-11-08 15:40:34 +01:00
.gitreview OpenDev Migration Patch 2019-04-19 19:43:08 +00:00
.mailmap Committing initial work 2017-11-08 15:40:34 +01:00
.stestr.conf Committing initial work 2017-11-08 15:40:34 +01:00
.zuul.yaml Remove stable/wallaby job from master gate 2023-01-27 08:10:51 +00:00
CONTRIBUTING.rst [ussuri][goal] Update contributor documentation 2021-05-31 20:36:23 +00:00
HACKING.rst Use updated hacking url link 2018-10-17 04:03:05 -04:00
LICENSE Committing initial work 2017-11-08 15:40:34 +01:00
README.rst Modifying README for installation and test run information 2019-08-19 10:16:50 +00:00
babel.cfg Committing initial work 2017-11-08 15:40:34 +01:00
requirements.txt Committing initial work 2017-11-08 15:40:34 +01:00
setup.cfg Update python testing classifier 2021-12-21 10:48:23 +00:00
setup.py Committing initial work 2017-11-08 15:40:34 +01:00
test-requirements.txt Add doc/requirements 2021-01-05 16:40:03 +00:00
tox.ini Merge "Use py3 as the default runtime for tox" 2021-08-18 22:05:32 +00:00

README.rst

Tempest integration of CloudKitty

This project defines a tempest plugin containing tests used to verify the functionality of a cloudkitty installation. The plugin will automatically load these tests into tempest.

Dependencies

This plugin tests the CloudKitty API. This supposes that the 'rating' role exists in your OpenStack installation.

Developers

For more information on cloudkitty, refer to: https://docs.openstack.org/cloudkitty/latest/

For more information on tempest plugins, refer to: https://docs.openstack.org/tempest/latest/#using-plugins

Bugs

Please report bugs to: https://storyboard.openstack.org/#!/project/890

Installing

Clone this repository and call from the repo:

$ pip install -e .

Running the tests

To run all the tests from this plugin, call from the tempest repo:

$ cd <Tempest Directory>
$ tox -e all -- cloudkitty_tempest_plugin

To run a single test case, call with full path, for example:

$ cd <Tempest Directory>
$ tox -e all -- cloudkitty_tempest_plugin.tests.api.test_cloudkitty_api.CloudkittyAdminAPITest.test_get_collector_mappings

To retrieve a list of all tempest tests, run:

$ cd <Tempest Directory>
$ testr list-tests