Files
gnuk/tests/skip_if_emulation.py
2021-03-19 17:37:32 +09:00

7 lines
194 B
Python

import pytest
@pytest.fixture(scope="module",autouse=True)
def check_emulation(card):
if card.is_emulated_gnuk:
pytest.skip("Emulation requires KDF setup", allow_module_level=True)