From 9908d47f8e1da4f5f146ec782f1d56ffd51f7fa4 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Wed, 20 Nov 2024 06:07:46 +0100 Subject: [PATCH] Tests: Fix `tests/functional/test_timezones.py` --- pyproject.toml | 1 - tests/functional/test_timezones.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4ca262e..f845b3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -177,7 +177,6 @@ addopts = """ --ignore-glob=tests/functional/test_ref_override.py --ignore-glob=tests/functional/test_relation_name.py --ignore-glob=tests/functional/test_severity.py - --ignore-glob=tests/functional/test_timezones.py --ignore-glob=tests/functional/unit_testing/* """ log_level = "DEBUG" diff --git a/tests/functional/test_timezones.py b/tests/functional/test_timezones.py index bed107a..6efd281 100644 --- a/tests/functional/test_timezones.py +++ b/tests/functional/test_timezones.py @@ -31,7 +31,7 @@ def dbt_profile_data(self, unique_schema): "port": int(os.getenv("POSTGRES_TEST_PORT", 5432)), "user": os.getenv("POSTGRES_TEST_USER", "crate"), "pass": os.getenv("POSTGRES_TEST_PASS", ""), - "dbname": os.getenv("POSTGRES_TEST_DATABASE", "dbt"), + "dbname": os.getenv("POSTGRES_TEST_DATABASE", "crate"), "schema": unique_schema, }, },