Populate cache, start ComfyUI, stop after all tests.
()
| 206 | |
| 207 | @pytest.fixture(scope="module") |
| 208 | def comfyui(): |
| 209 | """Populate cache, start ComfyUI, stop after all tests.""" |
| 210 | _remove_pack(PACK_TEST1) |
| 211 | _ensure_cache() |
| 212 | pid = _start_comfyui() |
| 213 | yield pid |
| 214 | _stop_comfyui() |
| 215 | _remove_pack(PACK_TEST1) |
| 216 | |
| 217 | |
| 218 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected