Metadata-Version: 2.1
Name: octavia-tempest-plugin
Version: 3.3.1.dev3
Summary: Tempest plugin for Octavia
Home-page: https://docs.openstack.org/octavia-tempest-plugin/latest/
Author: OpenStack
Author-email: openstack-discuss@lists.openstack.org
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
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: cryptography >=3.0
Requires-Dist: python-dateutil >=2.5.3
Requires-Dist: pbr !=2.1.0,>=2.0.0
Requires-Dist: oslo.config >=5.2.0
Requires-Dist: oslo.log >=3.36.0
Requires-Dist: oslo.serialization !=2.19.1,>=2.18.0
Requires-Dist: oslo.utils >=3.33.0
Requires-Dist: oslotest >=3.2.0
Requires-Dist: python-barbicanclient >=4.5.2
Requires-Dist: pyOpenSSL >=17.1.0
Requires-Dist: requests >=2.14.2
Requires-Dist: tempest >=17.1.0
Requires-Dist: tenacity >=4.4.0
Requires-Dist: testtools >=2.2.0
Requires-Dist: keystoneauth1 >=3.3.0
Requires-Dist: httpx

======================
Octavia Tempest Plugin
======================

.. image:: https://governance.openstack.org/tc/badges/octavia-tempest-plugin.svg

Tempest integration of Octavia
------------------------------

This project contains the Tempest plugin for the Octavia project for
OpenStack Load Balancing.

For more information about Octavia see:
https://docs.openstack.org/octavia/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/octavia-tempest-plugin/latest/
* Source: https://opendev.org/openstack/octavia-tempest-plugin
* Bugs: https://bugs.launchpad.net/octavia

Installing
----------

From the tempest directory, setup the tempest virtual environment for the
Octavia tempest plugin::

    $ tox -e venv-tempest -- pip3 install -e <path to octavia-tempest-plugin>

For example, when using a typical devstack setup::

    $ cd /opt/stack/tempest
    $ tox -e venv-tempest -- pip3 install -e /opt/stack/octavia-tempest-plugin

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

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

    $ tox -e all -- octavia_tempest_plugin

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

    $ tox -e all -- octavia_tempest_plugin.tests.scenario.v2.test_traffic_ops.TrafficOperationsScenarioTest.test_basic_traffic

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

    $ testr list-tests

