Skip to content

License conflict fix #187

License conflict fix

License conflict fix #187

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: |
uv pip install --system -e .
uv pip install --system pytest pytest-asyncio pytest-cov
- name: Run tests
run: |
python -m pytest tests/ -v \
--ignore=tests/repl/test_modal_repl.py \
--ignore=tests/clients/ \
--cov=rlm \
--cov-report=term-missing