extract_otp_secret_keys/conftest.py
scito 9d052dc78a refactor image import and add Alpine docker image
- dynamic import of QR reader
- build docker also for arm64
2023-01-03 00:26:46 +01:00

10 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")