Skip to main content

Lightweight PostgreSQL migration and testing toolkit for FastAPI with raw SQL, dependency management, and isolated test databases

Project description

pgfast

codecov CI PyPI version Python versions License

Lightweight asyncpg integration for FastAPI. Raw SQL. Fast tests. Zero magic.

pgfast gives you everything you need to build FastAPI applications with PostgreSQL connection pooling, migrations, and isolated test databases without the weight of an ORM. Write SQL, own your queries, ship faster.

Why pgfast?

  • Raw SQL: Write the queries you want. No ORM translation layer, no query builder abstraction.
  • Fast Tests: Template database cloning gives you isolated test databases in milliseconds, not seconds.
  • FastAPI Native: Lifespan integration and dependency injection that feels natural.
  • Simple Migrations: Timestamped SQL files. Up and down. That's it.
  • Built for Testing: Pytest fixtures included. Create isolated databases, load fixtures, test in parallel.

Installation

pip install pgfast

Requires Python 3.14+ and PostgreSQL (earlier versions should work, open a PR if you'd like to add support).

Quick Start

1. Set up your FastAPI app

from fastapi import FastAPI, Depends
from pgfast import DatabaseConfig, create_lifespan, get_db_pool
import asyncpg

config = DatabaseConfig(url="postgresql://localhost/mydb")
app = FastAPI(lifespan=create_lifespan(config))

@app.get("/users")
async def get_users(pool: asyncpg.Pool = Depends(get_db_pool)):
    async with pool.acquire() as conn:
        return await conn.fetch("SELECT id, name FROM users")

2. Create and run migrations

# Initialize directories
pgfast init

# Create a migration
pgfast schema create add_users_table

# Edit the generated SQL files in db/migrations/
# Then preview and apply migrations
export DATABASE_URL="postgresql://localhost/mydb"
pgfast schema up --dry-run  # Preview first
pgfast schema up             # Apply migrations

3. Write tests with isolated databases

import pytest
from pgfast.pytest import isolated_db

async def test_user_creation(isolated_db):
    """Each test gets a fresh database fast and isolated."""
    async with isolated_db.acquire() as conn:
        await conn.execute("""
            INSERT INTO users (name, email)
            VALUES ('Alice', 'alice@example.com')
        """)

        user = await conn.fetchrow("SELECT * FROM users WHERE name = 'Alice'")
        assert user["email"] == "alice@example.com"

Features

Connection Management

  • asyncpg connection pooling with configurable size and timeouts
  • Graceful startup and shutdown with FastAPI lifespan
  • Connection validation on pool creation

Schema Migrations

  • Timestamped migration files: {timestamp}_{name}_up.sql and _down.sql
  • Transactional migration application
  • CLI for creating, applying, and rolling back migrations
  • Migration status tracking
  • Dependency tracking: Declare dependencies between migrations
  • Checksum validation: Detect modified migrations automatically
  • Dry-run mode: Preview changes before applying

Test Database Management

  • Isolated test databases for every test
  • Template database cloning for ~10-100x faster test setup (*needs benchmarking)
  • Automatic cleanup
  • Fixture loading from SQL files
  • Pytest fixtures ready to use

CLI Commands

# Initialization
pgfast init                           # Initialize directory structure

# Migration Management
pgfast schema create <name>           # Create migration files
pgfast schema up                      # Apply pending migrations
pgfast schema up --target <version>   # Migrate to specific version
pgfast schema up --dry-run            # Preview migrations without applying
pgfast schema up --force              # Skip checksum validation
pgfast schema down --steps 1          # Rollback 1 migration
pgfast schema down --target <version> # Rollback to specific version
pgfast schema down --dry-run          # Preview rollback
pgfast schema status                  # Show migration status
pgfast schema deps                    # Show dependency graph
pgfast schema verify                  # Verify migration checksums

# Test Database Management
pgfast test-db create                 # Create test database
pgfast test-db list                   # List test databases
pgfast test-db cleanup                # Clean up test databases

Migration Features

Dependency Tracking

Declare dependencies between migrations using comments:

-- depends_on: 20240101000000, 20240102000000

CREATE TABLE posts (
    id SERIAL PRIMARY KEY,
    user_id INTEGER REFERENCES users(id),
    title VARCHAR(255)
);

Migrations are automatically applied in dependency order, and circular dependencies are detected.

Checksum Validation

Migrations are checksummed (SHA-256) when applied. pgfast automatically detects if migration files have been modified after being applied:

pgfast schema verify  # Check for modifications
pgfast schema up      # Validates checksums automatically
pgfast schema up --force  # Skip validation if needed

Dry-Run Mode

Preview migrations before applying them:

pgfast schema up --dry-run    # See what would be applied
pgfast schema down --dry-run  # See what would be rolled back

Testing

pgfast includes pytest fixtures for fast, isolated testing:

# tests/conftest.py
from pgfast.pytest import *

# Your tests automatically get:
# - isolated_db: Fresh database per test (with template optimization)
# - db_pool_factory: Create multiple databases in one test
# - db_with_fixtures: Database with fixtures pre-loaded

Run tests:

export TEST_DATABASE_URL="postgresql://localhost/postgres"
pytest              # Run tests sequentially
pytest -n auto      # Run tests in parallel (recommended)

The test infrastructure supports parallel execution out of the box. Each test gets an isolated database, so tests can run concurrently without conflicts.

Advanced Testing

Selective Fixture Loading

Instead of loading all fixtures with db_with_fixtures, you can load specific fixtures using the fixture_loader fixture:

async def test_specific_feature(isolated_db, fixture_loader):
    # Load only the 'users' and 'products' fixtures
    # This will automatically load them in dependency order
    await fixture_loader(["users", "products"])
    
    async with isolated_db.acquire() as conn:
        # ...

Fixture Reusability

Fixtures are defined as SQL files following the naming convention {version}_{name}_fixture.sql. pgfast automatically discovers fixtures across multiple directories (e.g., db/fixtures/, or any directory matching **/fixtures pattern).

  • Auto-Discovery: Fixtures are discovered across multiple directories automatically. You can have fixtures in db/fixtures/, module_a/fixtures/, etc.
  • Version Matching: The version number MUST match a corresponding migration version.
  • Dependency Order: Fixtures are loaded in the same order as their corresponding migrations.
  • Reusability: All discovered fixtures are available globally and can be used in any test via fixture_loader or db_with_fixtures.

Multiple Databases

Need to test cross-database interactions? Use db_pool_factory:

async def test_multi_db(db_pool_factory):
    # Create two isolated databases
    pool1 = await db_pool_factory()
    pool2 = await db_pool_factory()
    
    try:
        # Test interaction between databases
        pass
    finally:
        # Cleanup is handled automatically, but you can be explicit
        await db_pool_factory.cleanup(pool1)
        await db_pool_factory.cleanup(pool2)

Configuration

from pgfast import DatabaseConfig

config = DatabaseConfig(
    url="postgresql://localhost/mydb",
    min_connections=5,
    max_connections=20,
    timeout=10.0,
    migrations_dir="db/migrations",
    fixtures_dir="db/fixtures",
)

Or use environment variables:

  • DATABASE_URL: Connection string
  • PGFAST_MIGRATIONS_DIR: Custom migrations directory
  • PGFAST_FIXTURES_DIR: Custom fixtures directory

Philosophy

SQL is not the enemy. Modern PostgreSQL is incredibly powerful. Instead of hiding it behind abstraction layers, pgfast embraces it. Write migrations in SQL. Write queries in SQL. Use PostgreSQL features directly.

Tests should be fast. Creating a database per test shouldn't take seconds. With template database cloning, you get isolation without the wait.

Integration should be simple. No complex configuration, no global state, no magic. Just functions and fixtures that do what they say.

Development

# Run tests
pytest              # Sequential
pytest -n auto      # Parallel (faster)

# Run with coverage
pytest --cov=src/pgfast

# Run integration tests
export TEST_DATABASE_URL="postgresql://localhost/postgres"
pytest tests/integration/
pytest -n auto tests/integration/  # Parallel

License

MIT


Built with asyncpg and FastAPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pgfast-0.2.0.tar.gz (26.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pgfast-0.2.0-py3-none-any.whl (32.0 kB view details)

Uploaded Python 3

File details

Details for the file pgfast-0.2.0.tar.gz.

File metadata

  • Download URL: pgfast-0.2.0.tar.gz
  • Upload date:
  • Size: 26.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pgfast-0.2.0.tar.gz
Algorithm Hash digest
SHA256 323ded727a13964ef7509164b43307763a1be5e0d78752daa76caaf40575e69b
MD5 ed409435a67f6d6de3c3fda688e70c7f
BLAKE2b-256 9936483546964a5470d567d237d565d6a19df6ce2e039264631f759f5767f68b

See more details on using hashes here.

File details

Details for the file pgfast-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pgfast-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pgfast-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 900bf447d4c4632a4edc70da7fc6d098aaf3f2e58cddab2f439c79fc19eabd05
MD5 bafbd71e746968b2cefb7431b8adaed7
BLAKE2b-256 4215fa91fa2f533680ca72ef24081373f27912672c43819eb7c0624a00308515

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page