extract_otp_secret_keys/conftest.py
scito 0490e227e1 docker image with qreader, 2nd image without qreader
- organize imports
- add qreader pytest.mark
- relaxed mode for pytest
- run tests in docker
- more tests
2022-12-26 18:31:09 +01:00

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