testing-dbt-models

Installation
SKILL.md

dbt Testing

Every model deserves at least one test. Primary keys need unique + not_null.

Workflow

1. Study Existing Test Patterns

CRITICAL: Match the project's existing testing style before adding new tests.

# Find all schema.yml files with tests
find . -name "schema.yml" -exec grep -l "tests:" {} \;

# Read existing tests to learn patterns
cat models/staging/schema.yml | head -100
cat models/marts/schema.yml | head -100
Installs
33
GitHub Stars
122
First Seen
Feb 7, 2026
testing-dbt-models — altimateai/data-engineering-skills