Spaces:
Sleeping
Sleeping
fix: suppress bandit B404 warning on subprocess import in pytest_runner
Browse files
app/tools/pytest_runner.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
Runs pytest against a cloned repository inside a resource-limited sandbox.
|
| 3 |
"""
|
| 4 |
import os
|
| 5 |
-
import subprocess
|
| 6 |
from typing import Any
|
| 7 |
|
| 8 |
from app.core.logger import get_logger
|
|
|
|
| 2 |
Runs pytest against a cloned repository inside a resource-limited sandbox.
|
| 3 |
"""
|
| 4 |
import os
|
| 5 |
+
import subprocess # nosec B404
|
| 6 |
from typing import Any
|
| 7 |
|
| 8 |
from app.core.logger import get_logger
|