caf324b09d
Build documentation / build (push) Failing after 0s
Deploy "method_comparison" Gradio to Spaces / deploy (push) Has been cancelled
Deploy "PEFT shop" Gradio app to Spaces / deploy (push) Has been cancelled
tests on transformers main / tests (push) Has been cancelled
tests / check_code_quality (push) Has been cancelled
tests / tests (ubuntu-latest, 3.10) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.11) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.12) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.13) (push) Has been cancelled
tests / tests (windows-latest, 3.10) (push) Has been cancelled
tests / tests (windows-latest, 3.11) (push) Has been cancelled
tests / tests (windows-latest, 3.12) (push) Has been cancelled
tests / tests (windows-latest, 3.13) (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
CI security linting / zizmor latest via Cargo (push) Has been cancelled
87 lines
3.0 KiB
YAML
87 lines
3.0 KiB
YAML
name: integration tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
branch:
|
|
description: 'Branch to test on'
|
|
required: true
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
run_transformers_integration_tests:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
transformers-version: ['main', 'latest']
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
ref: ${{ github.event.inputs.branch }}
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
persist-credentials: false
|
|
- name: Set up Python
|
|
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
|
|
with:
|
|
python-version: "3.10"
|
|
cache: "pip"
|
|
cache-dependency-path: "setup.py"
|
|
- name: print environment variables
|
|
run: |
|
|
echo "env.CI_BRANCH = ${CI_BRANCH}"
|
|
echo "env.CI_SHA = ${CI_SHA}"
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install .[test]
|
|
if [ "${{ matrix.transformers-version }}" == "main" ]; then
|
|
pip install -U git+https://github.com/huggingface/transformers.git
|
|
else
|
|
echo "Nothing to do as transformers latest already installed"
|
|
fi
|
|
|
|
- name: Test transformers integration
|
|
run: |
|
|
cd .. && git clone https://github.com/huggingface/transformers.git && cd transformers/ && git rev-parse HEAD
|
|
RUN_SLOW=1 pytest tests/peft_integration/test_peft_integration.py
|
|
run_diffusers_integration_tests:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# For now diffusers integration is not on PyPI
|
|
diffusers-version: ['main']
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
ref: ${{ github.event.inputs.branch }}
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
persist-credentials: false
|
|
- name: Set up Python
|
|
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
|
|
with:
|
|
python-version: "3.10"
|
|
cache: "pip"
|
|
cache-dependency-path: "setup.py"
|
|
- name: print environment variables
|
|
run: |
|
|
echo "env.CI_BRANCH = ${CI_BRANCH}"
|
|
echo "env.CI_SHA = ${CI_SHA}"
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install .[test]
|
|
|
|
if [ "${{ matrix.diffusers-version }}" == "main" ]; then
|
|
pip install -U git+https://github.com/huggingface/diffusers.git
|
|
else
|
|
echo "Nothing to do as diffusers latest already installed"
|
|
fi
|
|
|
|
- name: Test diffusers integration
|
|
run: |
|
|
cd .. && git clone https://github.com/huggingface/diffusers.git && cd diffusers/ && git rev-parse HEAD
|
|
pytest tests/lora/test_lora_layers_peft.py
|