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 70b4cdc commit eb0ccbeCopy full SHA for eb0ccbe
tests/end_to_end/models/model_owner.py
@@ -68,6 +68,13 @@ def create_workspace(self):
68
raise_exception=True
69
)
70
71
+ return_code, output, error = fh.run_command(
72
+ "pip install -r requirements.txt",
73
+ workspace_path=ws_path,
74
+ error_msg="Failed to install the requirements",
75
+ container_id=self.container_id,
76
+ )
77
+
78
except Exception as e:
79
log.error(f"{error_msg}: {e}")
80
raise e
0 commit comments