mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-05 05:45:51 +00:00
14 lines
322 B
Python
14 lines
322 B
Python
![]() |
"""
|
||
|
Minimal conftest for SDK integration tests.
|
||
|
Override the parent conftest to avoid testcontainers dependency.
|
||
|
"""
|
||
|
import pytest
|
||
|
|
||
|
from _openmetadata_testutils.ometa import int_admin_ometa
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="session")
|
||
|
def metadata():
|
||
|
"""Provide authenticated OpenMetadata client"""
|
||
|
return int_admin_ometa()
|