We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bd4718 commit 3c19c26Copy full SHA for 3c19c26
2 files changed
Makefile
@@ -4,7 +4,7 @@ clean:
4
find . -name '*.pyc' | xargs rm -rf
5
6
test:
7
- python -m ruff microagent tests
+ python -m ruff check microagent tests
8
python -m mypy microagent
9
python -m pytest tests
10
tests/test_tools_amqp.py
@@ -63,7 +63,7 @@ async def test_broker_send_ok(channel):
63
64
65
async def test_broker_send_ok_topic(channel):
66
- queue = Queue(name='test_queue', exchange='ex', topics=['*'])
+ Queue(name='test_queue', exchange='ex', topics=['*'])
67
broker = AMQPBroker('amqp://localhost')
68
await broker.ex.send({"a":1}, topic='a')
69
0 commit comments