12 lines
286 B
Python
12 lines
286 B
Python
|
import pytest
|
||
|
|
||
|
|
||
|
def pytest_addoption(parser):
|
||
|
parser.addoption("--island", action="store", default="",
|
||
|
help="Specify the Monkey Island address (host+port).")
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope='module')
|
||
|
def island(request):
|
||
|
return request.config.getoption("--island")
|