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 011f97c commit a6c0caaCopy full SHA for a6c0caa
testing/install_pyodide_libs.py
@@ -4,6 +4,7 @@
4
import importlib.util
5
import micropip
6
import asyncio
7
+import sys
8
9
PARENT_DIR = os.path.dirname(os.path.abspath(__file__))
10
ROOT_DIR = os.path.dirname(PARENT_DIR)
@@ -67,6 +68,7 @@ async def main():
67
68
try:
69
await install_missing_libraries(file, previously_installed)
70
except Exception as e:
71
+ sys.exit(1)
72
raise ValueError(f"failed to install library in file: {file}")
73
74
0 commit comments