From 609b6959bc5a809b1092cd7f2ab8aa6a39abea1f Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Thu, 7 May 2026 20:58:45 +0200 Subject: [PATCH] set_plugin_search_paths() inside test as well --- pyodide/test/test_wheel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyodide/test/test_wheel.py b/pyodide/test/test_wheel.py index f241776d02..2ef5e0e193 100644 --- a/pyodide/test/test_wheel.py +++ b/pyodide/test/test_wheel.py @@ -14,6 +14,8 @@ def test_ifcopenshell_import(selenium): import micropip await micropip.install(f"./{WHEEL_FILENAME}") import ifcopenshell + from pathlib import Path + ifcopenshell.set_plugin_search_paths([str(Path(ifcopenshell.__file__).parent)]) ifc_file = ifcopenshell.file() wall = ifc_file.create_entity("IfcWall") wall1 = ifc_file.by_type("IfcWall")[0]