2019-11-23 17:29:41 +05:30
|
|
|
import os
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
|
|
parser.addoption("--update",
|
|
|
|
action="store_true",
|
|
|
|
default=False)
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def update(request):
|
2019-11-27 17:49:58 +05:30
|
|
|
"""Store current results as new reference results."""
|
2019-11-23 17:29:41 +05:30
|
|
|
return request.config.getoption("--update")
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def reference_dir_base():
|
2019-11-27 17:49:58 +05:30
|
|
|
"""Directory containing reference results."""
|
2019-12-13 01:01:04 +05:30
|
|
|
return os.path.join(os.path.dirname(__file__),'reference')
|