From a5d7fa6dd8279aaf7dbbeec348d74299eb2dab29 Mon Sep 17 00:00:00 2001 From: Pankaj Koti Date: Fri, 20 Sep 2024 18:10:07 +0530 Subject: [PATCH] Ignore from Git possibly created symlink to 'dev/dags' for running 'airflow dags test' command (#1211) For local development and testing, we create a symlink in the project root for the `dev/dags` directory for the `airflow dags test` command to discover dags when the `AIRFLOW_HOME` is set to project dir. This PR adds to `.gitignore` to ignore the symlink so that it does not show as unstaged change while working with `git` --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 5991c231c..6f6111510 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,6 @@ webserver_config.py # VI *.sw[a-z] + +# Ignore possibly created symlink to `dev/dags` for running `airflow dags test` command. +dags