I have a Databricks style notebook with *.py extension, but contains ipython notebook magic commands like %run and %pip install that I believe is causing the parsing errors. I've added # noqa to end of these lines, however, I'm still getting the following error with termination in Github workflow.
WARNING: Error in file EGD/egd_all_dlt.py: Cannot parse file.
Error: Process completed with exit code 1.
Is there a configuration to set to ignore file parsing errors?
I have a Databricks style notebook with *.py extension, but contains ipython notebook magic commands like
%run
and%pip install
that I believe is causing the parsing errors. I've added# noqa
to end of these lines, however, I'm still getting the following error with termination in Github workflow.Is there a configuration to set to ignore file parsing errors?