File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
.github/actions/migration_tests Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,13 @@ runs:
3232 DB_RESET : " false"
3333 AIRFLOW_2_CMD : >-
3434 airflow db reset --skip-init -y &&
35- airflow db migrate --to-revision heads
35+ airflow db migrate --to-revision heads &&
36+ cd airflow-core/src/airflow && alembic check
3637 AIRFLOW_3_CMD : >-
3738 airflow db migrate --to-revision heads &&
3839 airflow db downgrade -n 2.7.0 -y &&
39- airflow db migrate
40+ airflow db migrate &&
41+ cd airflow-core/src/airflow && alembic check
4042 if : env.BACKEND != 'sqlite'
4143 - name : " Bring composer down"
4244 shell : bash
5759 AIRFLOW_3_CMD : >-
5860 airflow db migrate --to-revision heads &&
5961 airflow db downgrade -n 2.7.0 -y &&
60- airflow db migrate
62+ airflow db migrate &&
63+ cd airflow-core/src/airflow && alembic check
6164 if : env.BACKEND != 'sqlite'
6265 - name : " Bring compose down again"
6366 shell : bash
7073 breeze shell "airflow db reset -y &&
7174 airflow db migrate --to-revision heads &&
7275 airflow db downgrade -n 2.7.0 -y &&
73- airflow db migrate"
76+ airflow db migrate &&
77+ cd airflow-core/src/airflow && alembic check"
7478 env :
7579 COMPOSE_PROJECT_NAME : " docker-compose"
7680 AIRFLOW__DATABASE__EXTERNAL_DB_MANAGERS : " airflow.providers.fab.auth_manager.models.db.FABDBManager"
You can’t perform that action at this time.
0 commit comments