13 lines
297 B
Python
13 lines
297 B
Python
from sqlalchemy.orm import configure_mappers
|
|
|
|
|
|
def test_sqlalchemy_mappers_configure_without_join_errors():
|
|
"""
|
|
Ensure relationship joins are fully resolvable.
|
|
|
|
This catches missing FK/primaryjoin regressions early.
|
|
"""
|
|
import app.models # noqa: F401
|
|
|
|
configure_mappers()
|