Merge a4be4c1a69e01779c7b2054d80e1959de4018003 into 4368d8f87f580f526e8b2bc43bf0ac88e2b67033

This commit is contained in:
Mitchell Ludwig 2025-09-03 17:09:20 -06:00 committed by GitHub
commit 1421f90ef0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View File

@ -14,6 +14,10 @@ import urllib.request
import urllib.parse
import urllib.error
from comfy_execution.graph_utils import GraphBuilder, Node
import os
import sys
PYTHON_EXECUTABLE_PATH = os.path.realpath(sys.executable)
def run_warmup(client, prefix="warmup"):
"""Run a simple workflow to warm up the server."""
@ -145,7 +149,7 @@ class TestExecution:
def _server(self, args_pytest, request):
# Start server
pargs = [
'python','main.py',
PYTHON_EXECUTABLE_PATH,'main.py',
'--output-directory', args_pytest["output_dir"],
'--listen', args_pytest["listen"],
'--port', str(args_pytest["port"]),

View File

@ -14,6 +14,8 @@ import websocket #NOTE: websocket-client (https://github.com/websocket-client/we
import uuid
import urllib.request
import urllib.parse
import sys
from comfy.samplers import KSampler
@ -21,6 +23,7 @@ from comfy.samplers import KSampler
"""
These tests generate and save images through a range of parameters
"""
PYTHON_EXECUTABLE_PATH = os.path.realpath(sys.executable)
class ComfyGraph:
def __init__(self,
@ -152,7 +155,7 @@ class TestInference:
def _server(self, args_pytest):
# Start server
p = subprocess.Popen([
'python','main.py',
PYTHON_EXECUTABLE_PATH,'main.py',
'--output-directory', args_pytest["output_dir"],
'--listen', args_pytest["listen"],
'--port', str(args_pytest["port"]),