ComfyUI/tests
doctorpangloss f1a096b3e1 Merges new frontend
- fixes bfloat16 on cpu to numpy issues
 - extensions should go into comfy/web/extensions/javascript
2024-08-16 15:46:11 -07:00
..
asyncio
distributed
downloader Merge commit '39fb74c5bd13a1dccf4d7293a2f7a755d9f43cbd' of github.com:comfyanonymous/ComfyUI 2024-08-13 20:08:56 -07:00
inference WIP merge 2024-08-16 14:25:06 -07:00
library
unit Merges new frontend 2024-08-16 15:46:11 -07:00
__init__.py
absolute_import_checker.py Fix pylint issue with hydit, fix absolute versus relative imports 2024-08-16 13:06:33 -07:00
conftest.py Fixes for tests and completing merge 2024-08-01 18:28:51 -07:00
README.md

Automated Testing

Running tests locally

Additional requirements for running tests:

pip install .[dev]

Run inference tests:

pytest tests/inference

Quality regression test

Compares images in 2 directories to ensure they are the same

  1. Run an inference test to save a directory of "ground truth" images
    pytest tests/inference --output_dir tests/inference/baseline
  1. Make code edits

  2. Run inference and quality comparison tests

pytest