bug: handle subfolder missing in image output #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Windows Specific Commands" | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: windows-latest | |
env: | |
PYTHONIOENCODING: "utf8" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install Dependencies | |
run: | | |
python -m venv venv | |
.\venv\Scripts\Activate.ps1 | |
Get-Command python | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install -e . | |
comfy --skip-prompt --workspace ./ComfyUI install --fast-deps --nvidia --cuda-version 12.1 --skip-manager | |
comfy --workspace ./ComfyUI standalone --platform windows --proc x86_64 | |
ls | |
comfy standalone --rehydrate --platform windows --proc x86_64 | |
./python/python.exe ComfyUI/main.py --cpu --quick-test-for-ci |