We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7464b20 commit 5d5e089Copy full SHA for 5d5e089
tests/test_handlers.py
@@ -8,6 +8,7 @@
8
"""
9
10
import inspect
11
+import sys
12
from pathlib import Path
13
14
import pytest
@@ -35,6 +36,12 @@ def test_all_handlers(
35
36
extraction_config: ExtractionConfig,
37
request: pytest.FixtureRequest,
38
):
39
+ handler_name = input_dir.parent.name
40
+ if (sys.platform, handler_name) == ("darwin", "partclone"):
41
+ pytest.skip(
42
+ f"Handler '{handler_name}' not supported on platform '{sys.platform}'"
43
+ )
44
+
45
log_path = Path("/dev/null") # no logging
46
report_file = None # no reporting
47
0 commit comments