Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions tests/strategies/transformation/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""Pytest fixtures for transformation strategy tests."""

from __future__ import annotations

import pytest


@pytest.fixture
def default_rabbitmq_broker_image() -> str:
"""Pin RabbitMQ to 3.x to avoid RabbitMQ 4.x removing transient_nonexcl_queues."""
return "rabbitmq:3"
Loading