mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
e32bcf00ce
- Move pytest, pytest-cov, pytest-xdist to dev dependencies - Remove redundant jinja2 and uvicorn (included in fastapi[standard]) - Update CI to use --extra dev for test dependencies 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
438 B
YAML
22 lines
438 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
name: Run Test Suite
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: astral-sh/setup-uv@v5
|
|
with:
|
|
version: "latest"
|
|
- run: uv python install 3.13
|
|
- run: uv sync --extra dev
|
|
- name: Run tests in parallel
|
|
run: uv run pytest tests/ -n auto -v --tb=short
|