You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current implementation, the entire API should be executed as root (sudo dotnet run). This is because we are creating a process that installs npm dependencies for the test to execute.
The dependencies are namely, websocket and selenium-webdriver.
This is required because we need to ensure these libraries are present before the script starts executing. Root privilege is required since we are trying to write to a temporary file location.
The text was updated successfully, but these errors were encountered:
The Problem
In the current implementation, the entire API should be executed as root (
sudo dotnet run
). This is because we are creating a process that installs npm dependencies for the test to execute.fyp/api/Services/TestExecutionService.cs
Lines 85 to 92 in af8bf4e
The dependencies are namely,
websocket
andselenium-webdriver
.This is required because we need to ensure these libraries are present before the script starts executing. Root privilege is required since we are trying to write to a temporary file location.
The text was updated successfully, but these errors were encountered: