From 78598e48877aa1fe96e5ffee56a85390e3d18d29 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Tue, 5 Sep 2023 12:37:42 +0100 Subject: [PATCH] Try to fix Ci issues --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 90f458b31..91857507f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -159,7 +159,7 @@ test = 'pytest -vv --durations=0 . -m "not integration" --ignore=tests/test_exam test-cov = """pytest -vv --cov=cosmos --cov-report=term-missing --cov-report=xml --durations=0 -m "not integration" --ignore=tests/test_example_dags.py --ignore=tests/test_example_dags_no_connections.py""" # we install using the following workaround to overcome installation conflicts, such as: # apache-airflow 2.3.0 and dbt-core [0.13.0 - 1.5.2] and jinja2>=3.0.0 because these package versions have conflicting dependencies -test-integration-setup = """pip uninstall dbt-postgres dbt-databricks dbt-sqlite; \ +test-integration-setup = """pip uninstall dbt-databricks dbt-postgres dbt-sqlite; \ rm -rf airflow.*; \ airflow db init; \ pip install 'dbt-core==1.4' 'dbt-databricks<=1.4' 'dbt-postgres<=1.4' 'dbt-sqlite<=1.4' 'openlineage-airflow'"""