You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[feat] Merge ComfyUI_devtools into ComfyUI_frontend
- Move devtools Python files to src/devtools/
- Update CI workflows to use integrated devtools
- Update browser test documentation
- Eliminate external repository dependency
Fixes#4683
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
ComfyUI_devtools is now included in this repository under `src/devtools/`. During CI/CD, these files are automatically copied to the`custom_nodes` directory.
20
20
_ComfyUI_devtools adds additional API endpoints and nodes to ComfyUI for browser testing._
21
21
22
+
For local development, copy the devtools files to your ComfyUI installation:
This directory contains development tools and test utilities for ComfyUI, previously maintained as a separate repository at `https://github.com/Comfy-Org/ComfyUI_devtools`.
4
+
5
+
## Contents
6
+
7
+
-`__init__.py` - Server endpoints for development tools (`/api/devtools/*`)
8
+
-`dev_nodes.py` - Development and testing nodes for ComfyUI
9
+
-`fake_model.safetensors` - Test fixture for model loading tests
10
+
11
+
## Purpose
12
+
13
+
These tools provide:
14
+
- Test endpoints for browser automation
15
+
- Development nodes for testing various UI features
16
+
- Mock data for consistent testing environments
17
+
18
+
## Usage
19
+
20
+
During CI/CD, these files are automatically copied to the ComfyUI `custom_nodes` directory. For local development, copy these files to your ComfyUI installation:
This directory was created as part of issue #4683 to merge the ComfyUI_devtools repository into the main frontend repository, eliminating the need for separate versioning and simplifying the development workflow.
0 commit comments