mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 02:30:32 -07:00
Fix CI
This commit is contained in:
parent
55c7b9c2f3
commit
b2cdd081b8
1 changed files with 5 additions and 1 deletions
|
@ -320,7 +320,11 @@
|
|||
|
||||
- include: encoding_dump_import.yml file=latin1.sql format_msg_type=ASCII
|
||||
|
||||
- name: Get pymysql version for the next include
|
||||
shell: pip show pymysql | awk '/Version/ {print $2}'
|
||||
register: pymysql_version
|
||||
|
||||
- include: config_overrides_defaults.yml
|
||||
when: ansible_python.version_info[0] >= 3
|
||||
when: ansible_python.version_info[0] >= 3 and (pymysql_version.stdout | default('1000', true)) is version('0.9.3', '>=')
|
||||
|
||||
- include: issue-28.yml
|
||||
|
|
Loading…
Add table
Reference in a new issue