Padmanav commited on
Commit
16ef9ea
·
1 Parent(s): 3c64c1d

fix: suppress bandit B404 warning on subprocess import in pytest_runner

Browse files
Files changed (1) hide show
  1. app/tools/pytest_runner.py +1 -1
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