Tempest plugin for the CloudKitty project.
Go to file
Takashi Kajinami e675206288 Remove six
This plugin no longer supports python 2 thus usage of six is no longer
needed.

Change-Id: Ifec8c68edc0c67f0dae937a9cf48598b5725d3f6
2024-02-14 13:44:14 +00:00
cloudkitty_tempest_plugin Remove six 2024-02-14 13:44:14 +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 Update stable branch testing 2024-02-08 23:06:04 +09: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 Remove six 2024-02-14 13:44:14 +00:00
setup.cfg Update python testing classifier 2021-12-21 10:48:23 +00:00
setup.py Cleanup py27 support 2023-05-26 14:35:14 +08: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