diff --git a/tests/test_ykman.py b/tests/test_ykman.py index e69de29b..08a4806f 100644 --- a/tests/test_ykman.py +++ b/tests/test_ykman.py @@ -0,0 +1,11 @@ +import pytest +try: + from ykman.device import list_all_devices + YKMAN_AVAILABLE = True +except ImportError: + YKMAN_AVAILABLE = False + +@pytest.mark.skipif(not YKMAN_AVAILABLE, reason="ykman module is not available") +def test_some_function_that_uses_ykman(): + pass +pytest \ No newline at end of file