diff --git a/.circleci/integration-tests/master_dag.py b/.circleci/integration-tests/master_dag.py index 065d06739..9282f04c9 100644 --- a/.circleci/integration-tests/master_dag.py +++ b/.circleci/integration-tests/master_dag.py @@ -199,8 +199,15 @@ def prepare_dag_dependency(task_info, execution_time): ], ) - check_swedish_data = PythonOperator( - task_id="check_swedish_data", + """ + This task is specifically added to test the astronomer logging + provider for non-ASCII character testing, as we have providers' + tests running on all cloud providers, and we do not want + multiple deployments for this. + """ + + check_non_ascii_data = PythonOperator( + task_id="check_non_ascii_data", python_callable=check_log, op_args=[ "get_airflow_version", @@ -209,7 +216,7 @@ def prepare_dag_dependency(task_info, execution_time): ], ) - airflow_version_check = (get_airflow_version, check_logs_data, check_swedish_data) + airflow_version_check = (get_airflow_version, check_logs_data, check_non_ascii_data) chain(*airflow_version_check) get_airflow_executor = BashOperator(