Skip to content

Commit

Permalink
Disable style tests in ydb/library/yql/providers/generic/connector/te…
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyisaev2 authored Apr 2, 2024
1 parent b2d9774 commit 09c0a84
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
PY3TEST()

STYLE_PYTHON()
NO_CHECK_IMPORTS()

DATA(arcadia/ydb/library/yql/providers/generic/connector/tests/datasource/clickhouse/docker-compose.yml)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
PY3TEST()

STYLE_PYTHON()
NO_CHECK_IMPORTS()

DATA(arcadia/ydb/library/yql/providers/generic/connector/tests/datasource/postgresql/docker-compose.yml)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
PY3TEST()

STYLE_PYTHON()
NO_CHECK_IMPORTS()

DATA(arcadia/ydb/library/yql/providers/generic/connector/tests/join/docker-compose.yml)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
PY3_LIBRARY()

STYLE_PYTHON()

PY_SRCS(
base.py
select_missing_database.py
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import time
from datetime import datetime
from typing import Tuple
import sys

import pg8000.dbapi

Expand All @@ -19,7 +18,7 @@ class Client:
def __init__(self, settings: Settings.PostgreSQL):
self.settings = settings
self.pools = dict()
LOGGER.debug(f"initializing client")
LOGGER.debug("initializing client")

@contextmanager
def get_cursor(self, dbname: str):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
PY3_LIBRARY()

STYLE_PYTHON()

PY_SRCS(
clickhouse.py
postgresql.py
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
PY3_LIBRARY()

STYLE_PYTHON()

PY_SRCS(
clickhouse.py
postgresql.py
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
PY3_LIBRARY()

STYLE_PYTHON()

PY_SRCS(
clickhouse.py
postgresql.py
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
PY3_LIBRARY()

STYLE_PYTHON()

PY_SRCS(
artifacts.py
comparator.py
Expand Down

0 comments on commit 09c0a84

Please sign in to comment.