Tempest plugin for the CloudKitty project.
Go to file
Zuul b1117d5d59 Merge "Use py3 as the default runtime for tox" 2021-08-18 22:05:32 +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 Add victoria/wallaby stable branch jobs on master gate 2021-04-29 18:49:14 -05: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 setup.cfg: Replace dashes with underscores 2021-05-13 20:01:56 +08: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