mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-12 19:49:36 +00:00
8 lines
229 B
Python
8 lines
229 B
Python
try:
|
|
from pytest import Config as PytestConfig # type: ignore[attr-defined]
|
|
except ImportError:
|
|
# Support for pytest 6.x.
|
|
from _pytest.config import Config as PytestConfig # type: ignore
|
|
|
|
__all__ = ["PytestConfig"]
|