Skip to content

Fix Intel Arc GPU installation in embedded python env, conda env is not required anymore #708

Fix Intel Arc GPU installation in embedded python env, conda env is not required anymore

Fix Intel Arc GPU installation in embedded python env, conda env is not required anymore #708

Workflow file for this run

name: Run pytest
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
statuses: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9' # Follow the min version in pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
pip install -e .
- name: Run tests
env:
PYTHONPATH: ${{ github.workspace }}
run: |
pytest --cov=comfy_cli --cov-report=xml .
- name: Upload coverage to Codecov
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true