diff --git a/airflow-core/tests/integration/otel/test_otel.py b/airflow-core/tests/integration/otel/test_otel.py index 1b23fe0f7549a..4f46b37e851ed 100644 --- a/airflow-core/tests/integration/otel/test_otel.py +++ b/airflow-core/tests/integration/otel/test_otel.py @@ -382,6 +382,7 @@ def _get_ti(self, dag_id: str, run_id: str, task_id: str) -> Any | None: ) return ti + @pytest.mark.execution_timeout(90) @pytest.mark.parametrize( ("legacy_names_on_bool", "legacy_names_exported"), [ @@ -417,6 +418,7 @@ def test_export_legacy_metric_names(self, legacy_names_on_bool, legacy_names_exp if legacy_names_exported: assert set(legacy_metric_names).issubset(metrics_dict.keys()) + @pytest.mark.execution_timeout(90) def test_export_metrics_during_process_shutdown(self, capfd): out, dag = self.dag_execution_for_testing_metrics(capfd)