You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2023/03/08 14:44:18 UTC

[airflow] 03/20: Removal of flake8 file has broken breeze bind mounts (#28909)

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

ephraimanierobi pushed a commit to branch v2-5-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit a0045495a4d5b0e41df7434429513993b53e37d6
Author: Niko Oliveira <on...@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
    
    (cherry picked from commit 118d6505a523ef8370e193ad5053d61cdf3cb6b0)
---
 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 b990e44169..fe2b6238fd 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