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 9a594d3 commit f981a5fCopy full SHA for f981a5f
testing/install_pyodide_libs.py
@@ -64,7 +64,10 @@ async def main():
64
lectures_py = list(glob.glob(PY_FILES_DIR + '/*.py'))
65
previously_installed = set()
66
for file in lectures_py:
67
- await install_missing_libraries(file, previously_installed)
+ try:
68
+ await install_missing_libraries(file, previously_installed)
69
+ except Exception as e:
70
+ raise ValueError(f"failed to install library in file: {file}")
71
72
73
if __name__ == '__main__':
0 commit comments