summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/rook/rook-client-python/conftest.py
blob: 77d6eb358f74f4012cb16426570038ac4eb55b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
import pytest

def pytest_addoption(parser):
    parser.addoption(
        "--crd_base", action="store", help="base path to the crd yamls"
    )


@pytest.fixture
def crd_base(request):
    return request.config.getoption("--crd_base")