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:
Matt Clay 2019-03-27 15:21:01 -07:00
parent d3f2f600c7
commit 09cd355bec
2 changed files with 7 additions and 7 deletions

View file

@ -10,7 +10,7 @@
- name: Install pika and requests - name: Install pika and requests
pip: pip:
name: pika,requests name: pika<1.0.0,requests
state: latest state: latest
- name: Test that giving an incorrect amqp protocol in URL will error - name: Test that giving an incorrect amqp protocol in URL will error

View file

@ -1,6 +1,6 @@
- name: Install requests and pika - name: Install requests and pika
pip: pip:
name: requests,pika name: requests,pika<1.0.0
state: present state: present
- name: RabbitMQ basic publish test - name: RabbitMQ basic publish test