mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 02:30:32 -07:00
Cover the case where pymysql isn't installed for plugin tests
This commit is contained in:
parent
096f7dc592
commit
e151e5c85e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue