Skip to content

VLLM Compatibility Update #548

VLLM Compatibility Update

VLLM Compatibility Update #548

Workflow file for this run

name: tests
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Install pip dependencies
run: |
pip install --upgrade pip setuptools
pip install -r requirements.txt
pip install pytest
- name: Download spaCy model
run: python -m spacy download en_core_web_sm
- name: Run tests
run: |
pytest tests/test*.py