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

celery.contrib.pytest

API Reference

Fixtures and testing utilities for pytest.

celery.contrib.pytest.celery_app(request, celery_config, celery_parameters, celery_enable_logging, use_celery_app_trap)[source]

Fixture creating a Celery application instance.

celery.contrib.pytest.celery_class_tasks()[source]

Redefine this fixture to register tasks with the test Celery app.

celery.contrib.pytest.celery_config()[source]

Redefine this fixture to configure the test Celery app.

The config returned by your fixture will then be used to configure the celery_app() fixture.

celery.contrib.pytest.celery_enable_logging()[source]

You can override this fixture to enable logging.

celery.contrib.pytest.celery_includes()[source]

You can override this include modules when a worker start.

You can have this return a list of module names to import, these can be task modules, modules registering signals, and so on.

celery.contrib.pytest.celery_parameters()[source]

Redefine this fixture to change the init parameters of test Celery app.

The dict returned by your fixture will then be used as parameters when instantiating Celery.

celery.contrib.pytest.celery_session_app(request, celery_config, celery_parameters, celery_enable_logging, use_celery_app_trap)[source]

Session Fixture: Return app for session fixtures.

celery.contrib.pytest.celery_session_worker(request, celery_session_app, celery_includes, celery_class_tasks, celery_worker_pool, celery_worker_parameters)[source]

Session Fixture: Start worker that lives throughout test suite.

celery.contrib.pytest.celery_worker(request, celery_app, celery_includes, celery_worker_pool, celery_worker_parameters)[source]

Fixture: Start worker in a thread, stop it when the test returns.

celery.contrib.pytest.celery_worker_parameters()[source]

Redefine this fixture to change the init parameters of Celery workers.

This can be used e. g. to define queues the worker will consume tasks from.

The dict returned by your fixture will then be used as parameters when instantiating WorkController.

celery.contrib.pytest.celery_worker_pool()[source]

You can override this fixture to set the worker pool.

The “solo” pool is used by default, but you can set this to return e.g. “prefork”.

celery.contrib.pytest.depends_on_current_app(celery_app)[source]

Fixture that sets app as current.

celery.contrib.pytest.pytest_configure(config)[source]

Register additional pytest configuration.

celery.contrib.pytest.use_celery_app_trap()[source]

You can override this fixture to enable the app trap.

The app trap raises an exception whenever something attempts to use the current or default apps.