16 lines
390 B
Python
16 lines
390 B
Python
"""
|
|
Test configuration
|
|
"""
|
|
import pytest
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
parser.addoption("--test_dir", action="store", default=None,
|
|
help="the test output dir to use (omit to use a temp dir). "
|
|
"If given, outputs will _not_ be cleared after testing.")
|
|
|
|
|
|
@pytest.fixture
|
|
def test_dir(request):
|
|
return request.config.getoption("--test_dir")
|