Protect hf token #908
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: CLI CUDA Py-TXI Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
- unlabeled | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
jobs: | |
run_cli_cuda_py_txi_tests: | |
if: ${{ | |
(github.event_name == 'push') || | |
(github.event_name == 'workflow_dispatch') || | |
contains( github.event.pull_request.labels.*.name, 'cli') || | |
contains( github.event.pull_request.labels.*.name, 'cuda') || | |
contains( github.event.pull_request.labels.*.name, 'py_txi') || | |
contains( github.event.pull_request.labels.*.name, 'cli_cuda_py_txi') | |
}} | |
runs-on: | |
group: aws-g5-4xlarge-plus | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install requirements | |
run: | | |
pip install uv | |
uv pip install --upgrade pip | |
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu | |
uv pip install -e .[testing,py-txi] git+https://github.com/IlyasMoutawwakil/py-txi.git | |
env: | |
UV_SYSTEM_PYTHON: 1 | |
- name: Run tests | |
run: | | |
FORCE_SEQUENTIAL=1 pytest tests/test_cli.py -x -s -k "cli and cuda and py_txi" | |
- if: ${{ | |
(github.event_name == 'push') || | |
(github.event_name == 'workflow_dispatch') || | |
contains( github.event.pull_request.labels.*.name, 'examples') | |
}} | |
name: Run examples | |
run: | | |
FORCE_SEQUENTIAL=1 pytest tests/test_examples.py -x -s -k "cli and cuda and (tgi or tei)" |