A Django library that provides testing utilities to enforce internal consistency across Django concepts (models, signals, permissions, etc.). Current version is 0.5.1, with monthly releases.
pip install django-consistency-enforcerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic usage of ConsistencyEnforcer to verify internal consistency in Django tests.
Update imports to `from consistency_enforcer import ConsistencyEnforcer`.
Replace `@enforce_consistency` with a call to `enforcer.check_all()` inside the test.
Pass app labels to `check_all(app_labels=['myapp'])` to limit scope.