Update tests.py
Browse files
tests.py
CHANGED
|
@@ -288,8 +288,8 @@ def run_shell_command(cmd:str,forever_cmd:str) -> dict:
|
|
| 288 |
the `forever_cmd` parameter.
|
| 289 |
Important Environment Notes:
|
| 290 |
- The execution environment is **Alpine Linux**. Commands should be
|
| 291 |
-
compatible (e.g., `apk add` instead of `apt-get install`).
|
| 292 |
-
- `sudo`
|
| 293 |
- Standard bash features like `&&`, `||`, pipes (`|`), etc., are supported.
|
| 294 |
- When installing python packages , add an argument --break-system-packages to the pip install command.
|
| 295 |
- The following npm packages are preinstalled: express ejs chart.js .Any additional packages can be installed with npm install command.
|
|
|
|
| 288 |
the `forever_cmd` parameter.
|
| 289 |
Important Environment Notes:
|
| 290 |
- The execution environment is **Alpine Linux**. Commands should be
|
| 291 |
+
compatible (e.g., `sudo apk add` instead of `sudo apt-get install`).
|
| 292 |
+
- `sudo` should only be used when root privelages are required.
|
| 293 |
- Standard bash features like `&&`, `||`, pipes (`|`), etc., are supported.
|
| 294 |
- When installing python packages , add an argument --break-system-packages to the pip install command.
|
| 295 |
- The following npm packages are preinstalled: express ejs chart.js .Any additional packages can be installed with npm install command.
|