Fix: model download fails when server defaults to gzip #99
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: "Mac Specific Commands" | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- comfy_cli/** | |
jobs: | |
test: | |
runs-on: macos-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 | |
source venv/bin/activate | |
python -m pip install --upgrade pip | |
pip install -e . | |
comfy --skip-prompt --workspace ./ComfyUI install --fast-deps --m-series --skip-manager | |
comfy --here launch -- --cpu --quick-test-for-ci |