I had a similar problem. I could fix following these steps:in the Azure Devops repository: User Settings -> Personal access tokens -> + New tokenin Databricks: Settings -> User -> Linked accounts -> Azure Devops (Personal access token)You could also...
This works as long as the script calling the module is indeed __main__; i've changed it a bit to make it more generic:import os
import sys
def find_module(path):
while path:
if os.path.basename(path) == "src":
return path
...