Disables Django migrations when running tests, significantly speeding up test runs by using the current model state instead of running migrations. Version 0.6 is the latest, with no recent updates. Use it to avoid migration overhead in CI or local testing.
pip install django-test-without-migrationsVerified import paths — ran on the pinned version, not inferred.
Two usage patterns: setting TEST_RUNNER globally, or mixing into individual test classes.
Run tests with migrations periodically (e.g., on CI) to catch migration issues.
Use the mixin 'TestWithoutMigrationsMixin' instead of setting TEST_RUNNER if using Django 1.10+.
Write a custom test runner that inherits from DjangoTestSuiteRunner and overrides setup_databases.
No dependency data recorded yet.