MINOR: Fix postgres conftest import (#17210)

This commit is contained in:
Mayur Singal 2024-07-27 18:08:42 +05:30 committed by GitHub
parent b9e57c71e8
commit 8b9d8aad91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View File

@ -168,6 +168,7 @@ plugins: Dict[str, Set[str]] = {
DATA_DIFF["clickhouse"],
},
"dagster": {
"croniter<3",
VERSIONS["pymysql"],
"psycopg2-binary",
VERSIONS["geoalchemy2"],

View File

@ -8,10 +8,7 @@ from subprocess import CalledProcessError
import pytest
from testcontainers.postgres import PostgresContainer
from ingestion.src._openmetadata_testutils.helpers.docker import (
copy_dir_to_container,
try_bind,
)
from _openmetadata_testutils.helpers.docker import copy_dir_to_container, try_bind
@pytest.fixture(autouse=True, scope="session")