Metadata-Version: 2.4
Name: kuryr-tempest-plugin
Version: 0.9.0
Summary: Kuryr Tempest Plugin
Home-page: https://docs.openstack.org/kuryr-tempest-plugin/latest/
Author: OpenStack
Author-email: openstack-discuss@lists.openstack.org
License: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Environment :: OpenStack
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: pbr!=2.1.0,>=2.0.0
Requires-Dist: oslotest>=3.2.0
Requires-Dist: os-testr>=1.0.0
Requires-Dist: six>=1.10.0
Requires-Dist: tempest>=17.1.0
Requires-Dist: testrepository>=0.0.18
Requires-Dist: testtools>=2.2.0
Requires-Dist: kubernetes>=5.0.0
Requires-Dist: oslo.concurrency>=3.26.0
Requires-Dist: netaddr>=0.7.19
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

========================
Team and repository tags
========================

.. image:: https://governance.openstack.org/tc/badges/kuryr-tempest-plugin.svg
    :target: https://governance.openstack.org/tc/reference/tags/index.html

.. Change things from this point on

============================
Tempest Integration of Kuryr
============================

Overview
========

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

For more information about Kuryr see:
https://docs.openstack.org/kuryr/latest/

For more information about Kuryr-kubernetes see:
https://docs.openstack.org/kuryr-kubernetes/latest/

For more information about Tempest plugins see:
https://docs.openstack.org/tempest/latest/plugin.html

* Free software: Apache license
* Documentation: https://docs.openstack.org/kuryr-tempest-plugin/latest/
* Source: https://opendev.org/openstack/kuryr-tempest-plugin
* Bugs: https://bugs.launchpad.net/kuryr

Installing
----------

Clone this repository and call from the repo::

    $ pip install -e .

Running the tests
-----------------

To verify the functionality of Kuryr by running tests from this plugin;
From the tempest repo, initialize stestr::

    $ stestr init

Then, to run all the tests from this plugin, call::

    $ tempest run -r 'kuryr_tempest_plugin.*'

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

    $ tempest run -r 'kuryr_tempest_plugin.tests.scenario.test_cross_ping.TestCrossPingScenario.test_vm_pod_ping*'

To retrieve a list of all tempest tests, run::

    $ tempest run -l

