Add Sst2 #20
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: Run pytest | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- 'utilization/**' | |
- 'tests/**' | |
- '.github/workflows/**' | |
jobs: | |
build: | |
name: Run tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8.18"] | |
steps: | |
- uses: szenius/[email protected] | |
with: | |
timezoneLinux: "Europe/Berlin" | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install uv | |
run: pip install uv pip -U | |
- name: Install dependencies | |
run: uv pip install -r tests/requirements-tests.txt --system | |
- name: Install isolation dependencies | |
run: uv pip install vllm --no-build-isolation --system | |
- uses: pavelzw/pytest-action@v2 | |
with: | |
emoji: false | |
verbose: true | |
job-summary: true |