pytest-orm-boundaries
💡 Even if you control your imports, boundaries can still leak through the ORM.
pytest-orm-boundaries is a pytest plugin that reports ORM queries crossing your DDD aggregate boundaries.
Currently works with Django ORM, SQLAlchemy is in roadmap.
In domain-driven design, an aggregate is a consistency boundary: code in one
aggregate should not reach into the internals of another. Django's __ relation
lookups make it easy to cross those boundaries silently:
# Purchase and Client belong to different aggregates — this query couples them.
Purchase.objects.get(client__name="John")
pytest-orm-boundaries watches the ORM activity exercised by your test suite
and reports access that crosses a configured boundary - through __ lookups,
select_related, prefetch_related, subqueries, or hand-written .raw() SQL.
Install
Install the plugin in your Django project:
pip install pytest-orm-boundaries
pytest discovers the plugin automatically.
The plugin uses the Django version already installed by your project. If you are installing into an environment without Django and want pip to install it too, use the optional extra:
pip install "pytest-orm-boundaries[django]"
Configure
Declare your aggregates and their Django models in boundaries.toml at the project
root (or point at the file with --boundaries-config / the
boundaries_config ini option):
[aggregates.client]
models = ["bookshop.Client"]
[aggregates.book]
models = ["bookshop.Book"]
[aggregates.purchase]
models = ["bookshop.Purchase", "bookshop.PurchaseLine"]
Models are written as app_label.Model. Models not listed in any aggregate are
not checked. Without a config file the plugin emits a warning and runs no checks.
What it catches
The plugin flags executed ORM access that spans more than one configured group.
In the DDD example below, each crossing couples the purchase and client
aggregates:
-
__relation lookups:Purchase.objects.get(client__name="John")
-
select_related:Purchase.objects.select_related("client")
-
Subqueries - a table reached through a subquery still counts:
berlin_clients = Client.objects.filter(city="Berlin").values("id") Purchase.objects.filter(client_id__in=berlin_clients)
-
Hand-written
.raw()SQL:Purchase.objects.raw( "SELECT p.id FROM bookshop_purchase p " "JOIN bookshop_client c ON p.client_id = c.id" )
-
Bare
cursor.execute()- the same join reached through a raw cursor. -
prefetch_related:Purchase.objects.prefetch_related("client")
Queries that don't actually join across the boundary are not flagged - for example a foreign-key lookup by id, which Django resolves without a join:
Purchase.objects.filter(client_id=42) # reads one table
Purchase.objects.filter(client__pk=42) # Django trims the join
The report
At the end of the run, the plugin prints one grouped entry per offending place:
====================== orm-boundaries: boundary crossings ======================
1 place(s) in your code crossed aggregate boundaries, affecting 1 test(s):
bookshop/query_helpers.py:8 in evaluate
crossed aggregates: client ↔ purchase
models: bookshop.Client, bookshop.Purchase
called from: bookshop/reports.py:13 in list_purchases_with_client
1 test(s) affected:
test_purchases.py::test_list_purchases_with_client
orm-boundaries: FAILED - 1 boundary crossing(s), run exits non-zero.
Each entry names the aggregates the query crossed and the models it joined.
Places are ordered by how many tests they affect. Pass -v to see full call
chains and every affected test (otherwise the lists are capped at 3 per place).
Allow and ignore
CQRS read models may cross aggregate boundaries by design, while existing
application code may contain crossings you want to fix over time. [allow] and
[ignore] let you tell the plugin which is which:
[allow]- the crossing is intentional. Use it for code that is meant to span aggregates, such as CQRS read models. An allowed crossing is suppressed and never reported.[ignore]- the crossing is known debt you plan to fix. It is suppressed and the plugin reports the entry when its matching code runs without a crossing.
[allow]
files = [
"app/read_models/sales.py",
]
[ignore]
files = [
"app/billing.py",
"app/legacy/*",
]
Each entry is a glob (fnmatch),
resolved relative to pytest's root directory and matched against either:
- the file that issues the query, or
- the test file.
Stale-ignore reporting is experimental and disabled by default while its detection is being refined. Enable it explicitly when running pytest:
pytest --boundaries-stale-ignores
With the flag enabled, an [ignore] whose matching code runs through the whole
suite without crossing a boundary is listed for removal:
======================= orm-boundaries: stale ignores ========================
These [ignore] entries matched files that ran without crossing a boundary. Remove them from boundaries.toml:
- app/billing.py
[allow] entries are never reported this way. If a file sits in both sections,
the allow wins and its [ignore] entry shows up as stale to remove when the
check is enabled.
A note on Django internals
Catching prefetch_related relies on Django internals that come with no stability
promise, so new Django releases may require compatibility updates.
Known gaps (on the project roadmap)
- lazy attribute access (e.g.
purchase.client); - related-manager reads/writes (
client.purchases.all(),client.purchases.create(...)); - a direct query on another aggregate's model, e.g.
Client.objects.get(...)written inside purchase code.
Status
Alpha - testing basic version.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest_orm_boundaries-0.8.0.tar.gz.
File metadata
- Download URL: pytest_orm_boundaries-0.8.0.tar.gz
- Upload date:
- Size: 16.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b272418c12d7d6dbb89cf9e376e9b68640e9e5626451c290ac51799fc3e5d5c
|
|
| MD5 |
a2b227bc2fca18d58bdc85836965d2a7
|
|
| BLAKE2b-256 |
2708f79fb8d0f85bdae62cf3908eb6d4fc6a603f355d81270c7add55c356d9ec
|
Provenance
The following attestation bundles were made for pytest_orm_boundaries-0.8.0.tar.gz:
Publisher:
publish.yml on evchibisova/pytest-orm-boundaries
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytest_orm_boundaries-0.8.0.tar.gz -
Subject digest:
5b272418c12d7d6dbb89cf9e376e9b68640e9e5626451c290ac51799fc3e5d5c - Sigstore transparency entry: 2236823419
- Sigstore integration time:
-
Permalink:
evchibisova/pytest-orm-boundaries@3bd48967d5b9f3a7a18c722ecd06c7d036af4849 -
Branch / Tag:
refs/tags/v0.8.0 - Owner: https://github.com/evchibisova
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@3bd48967d5b9f3a7a18c722ecd06c7d036af4849 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pytest_orm_boundaries-0.8.0-py3-none-any.whl.
File metadata
- Download URL: pytest_orm_boundaries-0.8.0-py3-none-any.whl
- Upload date:
- Size: 22.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc45688dd54be2a4a33f6c1ed10b220a7ab4ab883c86c6714706efbd6dd496b9
|
|
| MD5 |
3c254799d17347ca78c46ee09893e381
|
|
| BLAKE2b-256 |
63e9df259b060ea7fde79c5a0a5921d45fc3a70eeaf7ffd27c2c2d14e8a8f1b0
|
Provenance
The following attestation bundles were made for pytest_orm_boundaries-0.8.0-py3-none-any.whl:
Publisher:
publish.yml on evchibisova/pytest-orm-boundaries
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytest_orm_boundaries-0.8.0-py3-none-any.whl -
Subject digest:
cc45688dd54be2a4a33f6c1ed10b220a7ab4ab883c86c6714706efbd6dd496b9 - Sigstore transparency entry: 2236824321
- Sigstore integration time:
-
Permalink:
evchibisova/pytest-orm-boundaries@3bd48967d5b9f3a7a18c722ecd06c7d036af4849 -
Branch / Tag:
refs/tags/v0.8.0 - Owner: https://github.com/evchibisova
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@3bd48967d5b9f3a7a18c722ecd06c7d036af4849 -
Trigger Event:
release
-
Statement type: