summaryrefslogtreecommitdiff
path: root/tests/config/conftest.py
blob: 491b16267a0de3f1cf87a7c1e3b8d34396d2a3bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt

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")