Azure Automation runbook with multiple Python classes in separate files
I am developing multiple Python classes (in separate files) to be used in a runbook using Azure DevOps (git) as version control with runbooks automatically syncing to Azure Automation.
I know there is a way to include the modules in the environment but I don't want to do that.Not yet, because I'm still developing those classes.
I could also pull the class files from DevOps separately but I do not want to that either.
Is there any way to include all the files the runbook needs in the runbook run?
My workaround currently is to concatenate all the files in one file, which works but I don't like it either.