summaryrefslogtreecommitdiff
path: root/tests/config/conftest.py
blob: 5a6778af2fd8672e451388d82a1e46e8b6acdc09 (plain)
1
2
3
4
5
6
7
8
9
10
from pathlib import Path

import pytest

HERE = Path(__file__).parent


@pytest.fixture()
def file_to_lint_path() -> str:
    return str(HERE / "file_to_lint.py")