mirror of
https://github.com/polhenarejos/pico-openpgp.git
synced 2026-08-27 15:07:07 +01:00
7 lines
183 B
Python
7 lines
183 B
Python
import pytest
|
|
|
|
@pytest.fixture(scope="module",autouse=True)
|
|
def check_kdfreq(card):
|
|
if card.kdf_required:
|
|
pytest.skip("Token requires KDF setup", allow_module_level=True)
|