Cover the case where pymysql isn't installed for plugin tests

This commit is contained in:
Steve Teahan 2020-12-30 09:33:21 -05:00
parent 096f7dc592
commit e151e5c85e

View file

@ -318,7 +318,7 @@
register: pymysql_version
- name: Test plugin auth switching which doesn't work on pymysql < 0.9
when: pymysql_version.stdout is version('0.9', '>=')
when: pymysql_version.stdout == "" or (pymysql_version.stdout != "" and pymysql_version.stdout is version('0.9', '>='))
block:
- name: Create user with plugin auth (empty auth string)