mirror of
https://github.com/upa/mscp.git
synced 2026-02-04 03:24:58 +08:00
10 lines
237 B
Python
10 lines
237 B
Python
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")
|