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 cf4f0ab commit 76f8f14Copy full SHA for 76f8f14
1 file changed
Lib/test/test_build_details.py
@@ -26,7 +26,7 @@
26
generate_build_details = importlib.util.module_from_spec(spec)
27
sys.modules["generate_build_details"] = generate_build_details
28
spec.loader.exec_module(generate_build_details)
29
-except ImportError:
+except (FileNotFoundError, ImportError):
30
generate_build_details = None
31
32
@@ -178,6 +178,8 @@ def test_c_api(self):
178
generate_build_details is None,
179
"Failed to import generate-build-details"
180
)
181
+@unittest.skipIf(os.name != 'posix', 'Feature only implemented on POSIX right now')
182
+@unittest.skipIf(is_wasm32, 'Feature not available on WebAssembly builds')
183
class BuildDetailsRelativePathsTests(unittest.TestCase):
184
@property
185
def build_details_absolute_paths(self):
0 commit comments