File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1818 os : [ubuntu-22.04]
1919 runs-on : ${{ matrix.os }}
2020 services :
21- rabbitmq-streaming :
21+ rabbitmq-server :
2222 image : rabbitmq:4.0.3-management
23- env :
24- RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS : " -rabbitmq_stream advertised_host localhost"
2523 ports :
2624 - 5672:5672
2725 - 15672:15672
3735 virtualenvs-create : true
3836 virtualenvs-in-project : false
3937 - name : Enable RabbitMQ Plugins
40- run : docker exec ${{ job.services.rabbitmq-streaming .id }} rabbitmq-plugins enable rabbitmq_stream rabbitmq_stream_management rabbitmq_amqp1_0
38+ run : docker exec ${{ job.services.rabbitmq-server .id }} rabbitmq-plugins enable rabbitmq_stream rabbitmq_stream_management rabbitmq_amqp1_0
4139 - name : poetry install
4240 run : poetry install --no-root
4341 - name : isort check-only
Original file line number Diff line number Diff line change 11from proton .utils import BlockingConnection
22
33
4+ # Temporary this will be replaced by our connection Deal when we start the implementation
5+ # For the moment we just need a test to run poetry run pytest without failing
46def test_connection () -> None :
57 BlockingConnection ("amqp://guest:guest@localhost:5672/" )
You can’t perform that action at this time.
0 commit comments