mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-31 10:21:47 -07:00
Fix
This commit is contained in:
parent
368a23a36f
commit
d4abd957ca
2 changed files with 3 additions and 2 deletions
2
.github/workflows/ansible-test-plugins.yml
vendored
2
.github/workflows/ansible-test-plugins.yml
vendored
|
@ -120,7 +120,7 @@ jobs:
|
|||
run: "sed -i 's/^python_packages:.*/python_packages: [${{ matrix.connector }}]/' ${{ env.connector_version_file }}"
|
||||
|
||||
- name: Set Connector type (${{ matrix.connector }})
|
||||
run: "sed -i 's/^connector_type:.*/connector_type: echo $(echo ${{ matrix.connector }} | cut -f1 -d'=')/' ${{ env.connector_version_file }}"
|
||||
run: "sed -i 's/^connector_type:.*/connector_type: $(echo ${{ matrix.connector }} | cut -f1 -d'=')/' ${{ env.connector_version_file }}"
|
||||
|
||||
- name: Run integration tests
|
||||
run: ansible-test integration --docker -v --color --retry-on-error --continue-on-error --python ${{ matrix.python }} --diff --coverage
|
||||
|
|
|
@ -38,7 +38,8 @@
|
|||
|
||||
# https://github.com/ansible-collections/community.mysql/issues/292
|
||||
# FIXME: try to make it working
|
||||
- meta: end_play
|
||||
- name: End play when connector is mysqlclient
|
||||
meta: end_play
|
||||
when: connector_type == 'mysqlclient'
|
||||
|
||||
#########
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue