mirror of
https://github.com/scito/extract_otp_secret_keys.git
synced 2025-12-07 23:35:07 +01:00
11 lines
225 B
Python
11 lines
225 B
Python
|
|
import pytest
|
||
|
|
|
||
|
|
|
||
|
|
def pytest_addoption(parser):
|
||
|
|
parser.addoption( "--relaxed", action='store_true', help="run tests in relaxed mode")
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture
|
||
|
|
def relaxed(request):
|
||
|
|
return request.config.getoption("--relaxed")
|