mirror of
https://github.com/barkeser2002/offline-db.git
synced 2026-09-25 01:40:07 +03:00
9 lines
233 B
Python
9 lines
233 B
Python
import pytest
|
||
|
||
@pytest.fixture(autouse=True)
|
||
def skip_missing_crypto():
|
||
try:
|
||
import Cryptodome # noqa: F401
|
||
except ImportError:
|
||
pytest.skip("pycryptodome not installed – skipping crypto‑dependent tests")
|