make bucket before running test; rabbitmq 3.9 again

This commit is contained in:
Matthias Bisping 2022-06-14 16:58:27 +02:00
parent f9972a95a7
commit 771df7c78d
2 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,7 @@ services:
command: server /data
network_mode: "bridge"
rabbitmq:
image: docker.io/bitnami/rabbitmq:3.9.8
image: docker.io/bitnami/rabbitmq:3.9
ports:
- '4369:4369'
- '5551:5551'

View File

@ -179,6 +179,7 @@ def components(components_type, real_components, test_components, bucket_name):
storage, queue_manager, consumer = components
queue_manager.clear()
storage.make_bucket(bucket_name)
storage.clear_bucket(bucket_name)
yield storage, queue_manager, consumer