We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c17743 commit 1eba242Copy full SHA for 1eba242
.github/workflows/build-test.yaml
@@ -23,7 +23,7 @@ jobs:
23
env:
24
RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: "-rabbitmq_stream advertised_host localhost"
25
ports:
26
- - 5552:5552
+ - 5672:5672
27
- 15672:15672
28
steps:
29
- uses: actions/checkout@v2
tests/__init__.py
tests/test_connection.py
@@ -0,0 +1,5 @@
1
+from proton.utils import BlockingConnection
2
+
3
4
+def test_connection() -> None:
5
+ BlockingConnection("amqp://guest:guest@localhost:5672/")
0 commit comments