I have this working code:
with my_workflows.ZBX_SSL_CHECK('multiple', 'parameters', 'ZBX_SSL_CHECK') as workflow:
workflow.run()
and I'd like to write that using inline code, in order to use it inside a gitlab-ci configuration. I tried with no success:
python -m my_workflows -c "with my_workflows.ZBX_SSL_CHECK('multiple', 'parameters', 'ZBX_SSL_CHECK') as workflow: workflow.run()"