Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Test

on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]

Expand Down Expand Up @@ -30,12 +28,12 @@ jobs:
python-version: "3.13"

- name: Start MySQL
run: docker compose -f docker-compose.test.yml up -d --wait
run: docker compose -f docker-compose.yml up -d --wait

# ── fastapi_startkit package ──────────────────────────────────────────
- name: Install dependencies (fastapi_startkit)
working-directory: fastapi_startkit
run: uv sync --group dev
run: uv sync --group dev --extra database --extra sqlite

- name: Run tests (fastapi_startkit)
working-directory: fastapi_startkit
Expand All @@ -61,4 +59,4 @@ jobs:

- name: Stop MySQL
if: always()
run: docker compose -f docker-compose.test.yml down
run: docker compose -f docker-compose.yml down
5 changes: 0 additions & 5 deletions example/database-app/providers/app_provider.py

This file was deleted.

1 change: 1 addition & 0 deletions fastapi_startkit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ dev = [
"dumpdie>=1.5.0",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"ruff>=0.9.0",
"twine>=6.2.0",
]

Expand Down

This file was deleted.

Loading
Loading