Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit ce222e1

Browse files
committed
tmp
1 parent bd4179c commit ce222e1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_normalize_fields.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from concurrent.futures import ThreadPoolExecutor
22
import unittest
33
from datetime import datetime, timezone
4+
import logging
45

56
import preql
67

@@ -10,6 +11,7 @@
1011

1112
from .common import CONN_STRINGS
1213

14+
logger = logging.getLogger()
1315

1416
DATE_TYPES = {
1517
db.Postgres: ["timestamp({p}) with time zone", "timestamp({p}) without time zone"],
@@ -32,7 +34,7 @@ def _new_table(self, name):
3234
def _test_dates_for_db(self, item, precision=6):
3335
db_id, conn_string = item
3436

35-
# print(f"Testing {db_id}")
37+
logger.info(f"Testing {db_id}")
3638

3739
sample_date1 = datetime(2022, 6, 3, 12, 24, 35, 69296, tzinfo=timezone.utc)
3840
sample_date2 = datetime(2021, 5, 2, 11, 23, 34, 500001, tzinfo=timezone.utc)

0 commit comments

Comments
 (0)