feat(api): add postgres-backed api_db tests and CI job#47
Merged
Conversation
- Add tests/api_db with database marker; skip locally when DATABASE_URL is unset - GHA postgres-db job: pgvector, prisma migrate deploy + seed, pytest tests/api_db - LINKER_SKIP_SEMANTIC_INIT skips sentence-transformers in FastAPI lifespan - Consolidate SQL result mapping in row_mapping module - make test-database target; default Postgres bind to loopback via POSTGRES_BIND_ADDR - Host Dagster dev uses workspace.host.yaml; document verification tiers (AGENTS.md, README)
…igration Empty databases never had DDL for ProjectClassificationFailure, so prisma migrate deploy failed at 20260421130000. Insert 20260421121500 between prompt-version and drop-fk so the table exists (no FK).
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a Postgres-backed FastAPI test tier (
tests/api_db), a matchingpostgres-dbGitHub Actions job (pgvector service, Prisma migrate deploy + seed), andLINKER_SKIP_SEMANTIC_INITso CI can skip loading sentence-transformers.Details
DATABASE_URL=... LINKER_SKIP_SEMANTIC_INIT=true make test-database(see AGENTS.md)row_mappinghelpers; compose defaults Postgres bind to loopback (POSTGRES_BIND_ADDR)make devusesworkspace.host.yamlVerification
pytest -m unit— 137 passed locally