mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-08 03:30:33 -07:00
Fix sanity line too long
This commit is contained in:
parent
77342a2281
commit
911dddff56
1 changed files with 10 additions and 1 deletions
|
@ -75,7 +75,16 @@ def main():
|
||||||
p = tests.get('python')
|
p = tests.get('python')
|
||||||
cn = tests.get('connector_name')
|
cn = tests.get('connector_name')
|
||||||
cv = tests.get('connector_version')
|
cv = tests.get('connector_version')
|
||||||
make_cmd = f'make ansible="{a}" db_engine_name="{dn}" db_engine_version="{dv}" python="{p}" connector_name="{cn}" connector_version="{cv}" test-integration'
|
make_cmd = (
|
||||||
|
f'make '
|
||||||
|
f'ansible="{a}" '
|
||||||
|
f'db_engine_name="{dn}" '
|
||||||
|
f'db_engine_version="{dv}" '
|
||||||
|
f'python="{p}" '
|
||||||
|
f'connector_name="{cn}" '
|
||||||
|
f'connector_version="{cv}" '
|
||||||
|
f'test-integration'
|
||||||
|
)
|
||||||
print(f'Run tests for: Ansible: {a}, DB: {dn} {dv}, Python: {p}, Connector: {cn} {cv}')
|
print(f'Run tests for: Ansible: {a}, DB: {dn} {dv}, Python: {p}, Connector: {cn} {cv}')
|
||||||
os.system(make_cmd)
|
os.system(make_cmd)
|
||||||
# TODO, allow for CTRL+C to break the loop more easily
|
# TODO, allow for CTRL+C to break the loop more easily
|
||||||
|
|
Loading…
Add table
Reference in a new issue