mirror of
https://github.com/polhenarejos/pico-openpgp.git
synced 2026-08-31 09:03:28 +01:00
7 lines
183 B
Python
7 lines
183 B
Python
import pytest
|
|
|
|
@pytest.fixture(scope="module",autouse=True)
|
|
def check_kdf_support(card):
|
|
if not card.kdf_supported:
|
|
pytest.skip("No KDF support", allow_module_level=True)
|