chore: update the test ci for the new comfyui tests #293
Workflow file for this run
This file contains hidden or 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: PR Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - "nunchaku/**" | |
| - "src/**" | |
| - "tests/**" | |
| - "examples/**" | |
| - "scripts/**" | |
| - ".github/workflows/pr-test.yaml" | |
| - "!nunchaku/__version__.py" | |
| workflow_dispatch: | |
| inputs: | |
| ref: | |
| description: 'Branch, tag, or SHA to test (default: main)' | |
| required: false | |
| default: 'main' | |
| concurrency: | |
| group: ${{ github.repository }}-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| run-tests: | |
| strategy: | |
| matrix: | |
| gpu: ['5090', '4090'] | |
| runs-on: | |
| - self-hosted | |
| - ${{ matrix.gpu }} | |
| - test | |
| # Only run for non-draft PRs, or for workflow_dispatch events | |
| if: | | |
| (github.event_name == 'pull_request' && !github.event.pull_request.draft) || | |
| (github.event_name == 'workflow_dispatch') | |
| env: | |
| COMFYUI_MODELS_ROOT: "/home/nunchaku/comfyui_models" | |
| NUNCHAKU_TEST_CACHE_ROOT: "/home/nunchaku/nunchaku_test_root" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || '' }} | |
| - name: Show current commit | |
| run: git log -1 --oneline | |
| - name: Set up Python | |
| run: | | |
| which python | |
| echo "Setting up Python with Conda" | |
| conda create -n test_env python=3.13 -y | |
| - name: Install dependencies and build | |
| run: | | |
| source $(conda info --base)/etc/profile.d/conda.sh | |
| conda activate test_env || { echo "Failed to activate conda env"; exit 1; } | |
| which python | |
| echo "Installing dependencies" | |
| pip install torch==2.8 torchvision==0.23 --index-url https://download.pytorch.org/whl/cu128 | |
| pip install -e ".[ci]" | |
| - name: Setup ComfyUI | |
| run: | | |
| source $(conda info --base)/etc/profile.d/conda.sh | |
| conda activate test_env || { echo "Failed to activate conda env"; exit 1; } | |
| which python | |
| cd .. | |
| rm -rf ComfyUI | |
| mkdir -p ComfyUI | |
| cd ComfyUI | |
| mkdir -p "${COMFYUI_MODELS_ROOT}" | |
| ln -s "${COMFYUI_MODELS_ROOT}" models | |
| mkdir -p custom_nodes | |
| cd custom_nodes | |
| git clone -b dev https://github.com/mit-han-lab/ComfyUI-nunchaku.git | |
| pip install -r ComfyUI-nunchaku/requirements.txt | |
| git clone https://github.com/Fannovel16/comfyui_controlnet_aux.git | |
| cd comfyui_controlnet_aux | |
| git checkout cc6b232 | |
| cd .. | |
| git clone https://github.com/CY-CHENYUE/ComfyUI-InpaintEasy.git | |
| cd ComfyUI-InpaintEasy | |
| pip install -r requirements.txt | |
| git checkout d631a03 | |
| cd .. | |
| cd .. | |
| ln -s custom_nodes/ComfyUI-nunchaku/tests tests | |
| pip install -r tests/requirements.txt | |
| python custom_nodes/ComfyUI-nunchaku/scripts/download_models.py | |
| mkdir -p input | |
| python custom_nodes/ComfyUI-nunchaku/scripts/download_inputs.py | |
| - name: Run ComfyUI tests | |
| run: | | |
| source $(conda info --base)/etc/profile.d/conda.sh | |
| conda activate test_env || { echo "Failed to activate conda env"; exit 1; } | |
| pwd | |
| cd ../ComfyUI | |
| pytest tests/test_workflows.py -x -vv --reruns 2 --reruns-delay 0 | |
| - name: Run nunchaku tests | |
| run: | | |
| source $(conda info --base)/etc/profile.d/conda.sh | |
| conda activate test_env || { echo "Failed to activate conda env"; exit 1; } | |
| which python | |
| pytest -vv -x tests/flux/test_flux_examples.py | |
| pytest -vv -x tests/v1/test_examples.py | |
| python .github/workflows/run_all_tests.py | |
| - name: clean up | |
| if: always() | |
| run: | | |
| cd .. | |
| rm -rf ComfyUI |