This is an automated email from the ASF dual-hosted git repository.

taragolis pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 118d6505a5 Removal of flake8 file has broken breeze bind mounts 
(#28909)
118d6505a5 is described below

commit 118d6505a523ef8370e193ad5053d61cdf3cb6b0
Author: Niko Oliveira <oniko...@amazon.com>
AuthorDate: Thu Jan 12 23:53:11 2023 -0800

    Removal of flake8 file has broken breeze bind mounts (#28909)
    
    Don't try mount .flake8 anymore, it has been removed in #28893
---
 dev/breeze/src/airflow_breeze/utils/docker_command_utils.py | 1 -
 scripts/ci/docker-compose/local.yml                         | 3 ---
 2 files changed, 4 deletions(-)

diff --git a/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py 
b/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py
index 7670b5bbdd..c29707d2ce 100644
--- a/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py
+++ b/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py
@@ -77,7 +77,6 @@ VOLUMES_FOR_SELECTED_MOUNTS = [
     (".build", "/opt/airflow/.build"),
     (".coveragerc", "/opt/airflow/.coveragerc"),
     (".dockerignore", "/opt/airflow/.dockerignore"),
-    (".flake8", "/opt/airflow/.flake8"),
     (".github", "/opt/airflow/.github"),
     (".inputrc", "/root/.inputrc"),
     (".rat-excludes", "/opt/airflow/.rat-excludes"),
diff --git a/scripts/ci/docker-compose/local.yml 
b/scripts/ci/docker-compose/local.yml
index 45a18acceb..0d80695e75 100644
--- a/scripts/ci/docker-compose/local.yml
+++ b/scripts/ci/docker-compose/local.yml
@@ -42,9 +42,6 @@ services:
       - type: bind
         source: ../../../.dockerignore
         target: /opt/airflow/.dockerignore
-      - type: bind
-        source: ../../../.flake8
-        target: /opt/airflow/.flake8
       - type: bind
         source: ../../../.github
         target: /opt/airflow/.github

Reply via email to