Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions providers/dbt/cloud/tests/unit/dbt/cloud/hooks/test_dbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@
)
from airflow.utils import timezone

pytestmark = pytest.mark.db_test

ACCOUNT_ID_CONN = "account_id_conn"
NO_ACCOUNT_ID_CONN = "no_account_id_conn"
SINGLE_TENANT_CONN = "single_tenant_conn"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
if AIRFLOW_V_3_0_PLUS:
from airflow.sdk.execution_time.comms import XComResult

pytestmark = pytest.mark.db_test

DEFAULT_DATE = timezone.datetime(2021, 1, 1)
TASK_ID = "run_job_op"
ACCOUNT_ID_CONN = "account_id_conn"
Expand Down Expand Up @@ -647,6 +645,7 @@ def test_custom_trigger_reason(self, mock_run_job, conn_id, account_id):
[(ACCOUNT_ID_CONN, None), (NO_ACCOUNT_ID_CONN, ACCOUNT_ID)],
ids=["default_account", "explicit_account"],
)
@pytest.mark.db_test
def test_run_job_operator_link(
self, conn_id, account_id, create_task_instance_of_operator, request, mock_supervisor_comms
):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
from airflow.providers.dbt.cloud.sensors.dbt import DbtCloudJobRunSensor
from airflow.providers.dbt.cloud.triggers.dbt import DbtCloudRunJobTrigger

pytestmark = pytest.mark.db_test


ACCOUNT_ID = 11111
RUN_ID = 5555
TOKEN = "token"
Expand Down