This document describes the current stable version of pytest_celery (1.3). For development docs, go here.

Source code for pytest_celery.vendors.localstack.api

"""The pytest-celery plugin provides a set of built-in components called
:ref:`vendors`.

This module is part of the Localstack Broker vendor.
"""

from __future__ import annotations

from pytest_celery.api.broker import CeleryTestBroker


[docs] class LocalstackTestBroker(CeleryTestBroker): pass