Convert to Triton Punica kernels #625
Workflow file for this run
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: Server Tests | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/server_tests.yaml" | |
- "server/**" | |
- "proto/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Adding actions/checkout@v2 | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.10" | |
- name: Run ruff | |
run: | | |
pip install ruff | |
python -m ruff check server/lorax_server | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
- name: Filter test dependencies | |
run: | | |
# remove stanford-stk from test requirements as it cannot install correctly without GPUs | |
sed -i '/stanford-stk/d' server/requirements.txt | |
sed -i '/stanford-stk/d' server/pyproject.toml | |
- name: Install | |
run: | | |
make install-server install-custom-kernels | |
- name: Run server tests | |
run: | | |
pip install pytest | |
export HUGGING_FACE_HUB_TOKEN=${{ secrets.HUGGING_FACE_HUB_TOKEN }} | |
pytest -s -vv server/tests |