Skip to content

CODEOWNERS

CODEOWNERS #4

Workflow file for this run

name: Merge Queue Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
merge_group:
types: [checks_requested]
jobs:
test:
name: Run Tests
if: github.event_name == 'pull_request' || github.event_name == 'push' || github.event_name == 'merge_group'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: |
pytest --ignore=tests/test_vllm.py --ignore=tests/test_bedrock.py