diff --git a/tests/providers/conftest.py b/tests/providers/conftest.py deleted file mode 100644 index 41b7bd02f1..0000000000 --- a/tests/providers/conftest.py +++ /dev/null @@ -1,18 +0,0 @@ -from __future__ import annotations - -import os -from pathlib import Path -from typing import TYPE_CHECKING - -import pytest - -if TYPE_CHECKING: - from collections.abc import Iterator - - -@pytest.fixture -def chdir(tmp_path: Path) -> Iterator[Path]: - cwd = Path() - os.chdir(tmp_path) - yield tmp_path - os.chdir(cwd)