From d0dcc84c41809224421fc094562a2d78937c8b58 Mon Sep 17 00:00:00 2001 From: Erin Drummond Date: Mon, 31 Mar 2025 19:59:01 +0000 Subject: [PATCH 1/2] Chore: Fix airflow tests --- .circleci/continue_config.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.circleci/continue_config.yml b/.circleci/continue_config.yml index 8bc469bd6e..b5713ffa8e 100644 --- a/.circleci/continue_config.yml +++ b/.circleci/continue_config.yml @@ -157,8 +157,11 @@ jobs: name: Install envsubst command: sudo apt-get update && sudo apt-get install gettext-base - run: - name: Install ruamel.yaml - command: pip3 install ruamel.yaml==0.16.0 + name: Setup python env + command: | + pip3 install --upgrade pip + pip3 install ruamel.yaml==0.16.0 + python3 --version - run: name: Run Airflow slow tests command: make airflow-docker-test-with-env @@ -281,10 +284,10 @@ workflows: - airflow_docker_tests: requires: - style_and_cicd_tests - filters: - branches: - only: - - main + #filters: + # branches: + # only: + # - main - engine_tests_docker: name: engine_<< matrix.engine >> matrix: From 2622c808aabf99577ffff675e0409ce4be65d816 Mon Sep 17 00:00:00 2001 From: Erin Drummond Date: Mon, 31 Mar 2025 20:38:20 +0000 Subject: [PATCH 2/2] Reinstate branch filter --- .circleci/continue_config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/continue_config.yml b/.circleci/continue_config.yml index b5713ffa8e..1e4f695f58 100644 --- a/.circleci/continue_config.yml +++ b/.circleci/continue_config.yml @@ -284,10 +284,10 @@ workflows: - airflow_docker_tests: requires: - style_and_cicd_tests - #filters: - # branches: - # only: - # - main + filters: + branches: + only: + - main - engine_tests_docker: name: engine_<< matrix.engine >> matrix: