Compare commits

...

5 Commits

Author SHA1 Message Date
comfyanonymous
b9c3ad1c93
Update grep command to filter specific log message
Some checks failed
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled
Build package / Build Test (3.10) (push) Has been cancelled
Build package / Build Test (3.11) (push) Has been cancelled
Build package / Build Test (3.12) (push) Has been cancelled
Build package / Build Test (3.13) (push) Has been cancelled
Build package / Build Test (3.14) (push) Has been cancelled
2026-01-05 14:34:06 -05:00
comfyanonymous
c7acdfc958
Fix grep command for filtering server log output 2026-01-05 14:25:56 -05:00
comfyanonymous
d70c8a9d5b
Fix package test. 2026-01-05 14:23:31 -05:00
comfyanonymous
86d73ece91
Fix launch test. 2026-01-05 14:22:22 -05:00
comfyanonymous
6aa74fb712
Add comfy-kitchen to requirements 2026-01-05 12:48:24 -05:00
3 changed files with 5 additions and 2 deletions

View File

@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}

View File

@ -32,7 +32,9 @@ jobs:
working-directory: ComfyUI
- name: Check for unhandled exceptions in server log
run: |
if grep -qE "Exception|Error" console_output.log; then
grep -v "Found comfy_kitchen backend triton: {'available': False, 'disabled': False, 'unavailable_reason': \"ImportError: No module named 'triton'\", 'capabilities': \[\]}" console_output.log > console_output_filtered.log
cat console_output_filtered.log
if grep -qE "Exception|Error" console_output_filtered.log; then
echo "Unhandled exception/error found in server log."
exit 1
fi

View File

@ -21,6 +21,7 @@ psutil
alembic
SQLAlchemy
av>=14.2.0
comfy-kitchen
#non essential dependencies:
kornia>=0.7.1