This is an automated email from the ASF dual-hosted git repository.
jedcunningham 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 3a258a572ae Remove some leftover `processor_subdir` references (#45096)
3a258a572ae is described below
commit 3a258a572aeb89ffdea3830e9a3ba80eb232faa0
Author: Jed Cunningham <[email protected]>
AuthorDate: Thu Dec 19 14:22:41 2024 -0700
Remove some leftover `processor_subdir` references (#45096)
I missed these when I removed the rest in #45088.
---
contributing-docs/testing/unit_tests.rst | 6 ------
1 file changed, 6 deletions(-)
diff --git a/contributing-docs/testing/unit_tests.rst
b/contributing-docs/testing/unit_tests.rst
index 8dc1e291942..e15af7cc70e 100644
--- a/contributing-docs/testing/unit_tests.rst
+++ b/contributing-docs/testing/unit_tests.rst
@@ -489,7 +489,6 @@ the test is marked as DB test:
TaskCallbackRequest(
full_filepath="filepath",
simple_task_instance=SimpleTaskInstance.from_ti(ti=TI),
- processor_subdir="/test_dir",
is_failure_callback=True,
),
TaskCallbackRequest,
@@ -499,7 +498,6 @@ the test is marked as DB test:
full_filepath="filepath",
dag_id="fake_dag",
run_id="fake_run",
- processor_subdir="/test_dir",
is_failure_callback=False,
),
DagCallbackRequest,
@@ -508,7 +506,6 @@ the test is marked as DB test:
SlaCallbackRequest(
full_filepath="filepath",
dag_id="fake_dag",
- processor_subdir="/test_dir",
),
SlaCallbackRequest,
),
@@ -540,7 +537,6 @@ top level / parametrize to inside the test:
full_filepath="filepath",
dag_id="fake_dag",
run_id="fake_run",
- processor_subdir="/test_dir",
is_failure_callback=False,
),
DagCallbackRequest,
@@ -549,7 +545,6 @@ top level / parametrize to inside the test:
SlaCallbackRequest(
full_filepath="filepath",
dag_id="fake_dag",
- processor_subdir="/test_dir",
),
SlaCallbackRequest,
),
@@ -568,7 +563,6 @@ top level / parametrize to inside the test:
input = TaskCallbackRequest(
full_filepath="filepath",
simple_task_instance=SimpleTaskInstance.from_ti(ti=ti),
- processor_subdir="/test_dir",
is_failure_callback=True,
)