Skip to content

Commit d0eaf93

Browse files
committed
ruff fixes
1 parent eedc844 commit d0eaf93

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/pytest/test_internal_network.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def messaging_services():
3030
logger.debug("Using uv path: %s, starting router and provider with config: %s", uv_path, config_path)
3131

3232
# Start router process
33-
router_process = subprocess.Popen(
33+
router_process = subprocess.Popen( # Noqa: S603 # Subprocess is used for testing purposes, not in production code.
3434
[uv_path, "run", "pqn", "start-router", "--config", str(config_path)],
3535
stdout=subprocess.PIPE,
3636
stderr=subprocess.PIPE,
@@ -40,7 +40,7 @@ def messaging_services():
4040
time.sleep(1)
4141

4242
# Start provider process
43-
provider_process = subprocess.Popen(
43+
provider_process = subprocess.Popen( # Noqa: S603 # Subprocess is used for testing purposes, not in production code.
4444
[uv_path, "run", "pqn", "start-provider", "--config", str(config_path)],
4545
stdout=subprocess.PIPE,
4646
stderr=subprocess.PIPE,

0 commit comments

Comments
 (0)