diff --git a/dev/Dockerfile b/dev/Dockerfile index a17bb9943..9fd3df75a 100644 --- a/dev/Dockerfile +++ b/dev/Dockerfile @@ -17,7 +17,7 @@ COPY ./README.rst ${AIRFLOW_HOME}/astronomer_cosmos/ COPY ./cosmos/ ${AIRFLOW_HOME}/astronomer_cosmos/cosmos/ COPY ./dev/requirements.txt ${AIRFLOW_HOME}/requirements.txt # install the package in editable mode -RUN uv pip install --system -e "${AIRFLOW_HOME}/astronomer_cosmos"[dbt-postgres,dbt-databricks] && \ +RUN uv pip install --system -e "${AIRFLOW_HOME}/astronomer_cosmos"[dbt-postgres,dbt-databricks,dbt-bigquery] && \ uv pip install --system -r ${AIRFLOW_HOME}/requirements.txt diff --git a/tests/dbt/test_graph.py b/tests/dbt/test_graph.py index 30ab0e21a..1c0912042 100644 --- a/tests/dbt/test_graph.py +++ b/tests/dbt/test_graph.py @@ -1524,7 +1524,7 @@ def test_save_dbt_ls_cache(mock_variable_set, mock_datetime, tmp_dbt_project_dir if sys.platform == "darwin": assert hash_dir == "25beeb54cc4eeabe6198248e286a1cfe" else: - assert hash_dir == "45ed7a4e1ab1ede62ccbe7ebdaa14208" + assert hash_dir == "6f63493009733a7be34364a6ea3ffd3c" @pytest.mark.integration