potiuk commented on pull request #20200:
URL: https://github.com/apache/airflow/pull/20200#issuecomment-1002601292
BTW. And you just need to move it to "src" -> "src/ci", not to
"src/airflow_breeze". The "src" is the "root" of Pyhon modules so everything
starts there. If you move the ci to "src/airlfow_breeze/ci", then the right
module path will be `airflow_breeze.ci.freespace`. We want to keep `ci`
separate from `airlfow_breeze` so that the scripts that are only used in CI are
placed separately.
```
src/
airflow_breeze/ -> breeze code
ci/ -> ci code
```
And then we can use those imports:
from airflow_breeze import .....
from ci import .....
BTW. I think it will actually be better to name the folder `airflow_ci` to
avoid any ambiguity.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]