Skip to content

test(split): add edge-case tests for val_frac=0, n=1, n=2, and invalid fracs #22

test(split): add edge-case tests for val_frac=0, n=1, n=2, and invalid fracs

test(split): add edge-case tests for val_frac=0, n=1, n=2, and invalid fracs #22

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e ".[dev]"
- run: ruff check pm_bench tests
- run: pytest -q