Pin rabbitmq tests to pika < 1.0.0 to fix tests.
Tests are failing with the release of pika 1.0.0.
This commit is contained in:
parent
d3f2f600c7
commit
09cd355bec
2 changed files with 7 additions and 7 deletions
|
@ -10,7 +10,7 @@
|
|||
|
||||
- name: Install pika and requests
|
||||
pip:
|
||||
name: pika,requests
|
||||
name: pika<1.0.0,requests
|
||||
state: latest
|
||||
|
||||
- name: Test that giving an incorrect amqp protocol in URL will error
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
- name: Install requests and pika
|
||||
pip:
|
||||
name: requests,pika
|
||||
name: requests,pika<1.0.0
|
||||
state: present
|
||||
|
||||
- name: RabbitMQ basic publish test
|
||||
|
|
Loading…
Reference in a new issue