mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-14 05:41:06 +01:00
Some checks failed
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled
Execution Tests / test (macos-latest) (push) Has been cancelled
Execution Tests / test (ubuntu-latest) (push) Has been cancelled
Execution Tests / test (windows-latest) (push) Has been cancelled
Test server launches without errors / test (push) Has been cancelled
Unit Tests / test (macos-latest) (push) Has been cancelled
Unit Tests / test (ubuntu-latest) (push) Has been cancelled
Unit Tests / test (windows-2022) (push) Has been cancelled
* Update release workflows for branch process * Adjust branch order in workflow triggers * Revert changes in test workflows
31 lines
839 B
YAML
31 lines
839 B
YAML
name: Execution Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, master, release/** ]
|
|
pull_request:
|
|
branches: [ main, master, release/** ]
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
continue-on-error: true
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Install requirements
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
|
|
pip install -r requirements.txt
|
|
pip install -r tests-unit/requirements.txt
|
|
- name: Run Execution Tests
|
|
run: |
|
|
python -m pytest tests/execution -v --skip-timing-checks
|