summaryrefslogtreecommitdiff
path: root/test/conftest.py
blob: 9d67cec9e6e47348ad2f83450715dab85a94be8c (plain)
1
2
3
4
5
6
7
8
9
import pytest

def pytest_addoption(parser):
    parser.addoption("--mscp-path", default = "mscp",
                     help = "path to mscp binary")

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