summaryrefslogtreecommitdiff
path: root/tests/migrations/test_loader.py
Commit message (Expand)AuthorAgeFilesLines
* Used more augmented assignment statements.Nick Pope2022-10-311-5/+5
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-5/+5
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-148/+210
* Refs #24900 -- Added MigrationLoader test for applying squashed migrations.Jacob Walls2021-08-301-0/+21
* Fixed typos in migrations tests, comments, and error message.Jacob Walls2021-08-041-2/+2
* Used assertRaisesMessage() to test MigrationLoader.get_migration_by_prefix()'...Mariusz Felisiak2021-08-041-2/+4
* Fixed #31413 -- Fixed isolation of migrations.test_loader on databases that d...Hasan Ramezani2020-12-311-24/+37
* Fixed #32302 -- Allowed migrations to be loaded from regular packages with no...William Schwartz2020-12-291-0/+30
* Reverted "Fixed #30300 -- Allowed migrations to be loaded from directories wi...Tim Graham2020-07-221-6/+5
* Fixed #31499 -- Stored ModelState.fields into a dict.Simon Charette2020-04-221-9/+3
* Fixed #30300 -- Allowed migrations to be loaded from directories without __in...Benjy Weinberger2019-10-101-0/+11
* Refs #30186 -- Changed MigrationRecorder.applied_migrations() to return a dict.Tim Schilling2019-03-071-6/+6
* Refs #28478 -- Deprecated TestCase's allow_database_queries and multi_db in f...Simon Charette2019-01-101-1/+1
* Fixed #29749 -- Made the migrations loader ignore files starting with a tilde...Tim Graham2018-09-111-0/+8
* Fixed #29498 -- Fixed a missing pyc test file in source distribution.Tim Graham2018-06-151-1/+6
* Refs #23406 -- Fixed "invalid escape sequence" warning in migrations test.Jon Dufresne2018-04-021-1/+1
* Fixed #23406 -- Allowed migrations to be loaded from .pyc files.Dan Watson2018-03-231-0/+34
* Fixed #29180 -- Fixed a regression where migrations already in the plan were ...Carlton Gibson2018-03-091-0/+16
* Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne2017-06-011-4/+4
* Added multi_db=True to test cases that access the 'other' db connection.Tim Graham2017-02-101-0/+1
* Fixed spelling of "nonexistent".Tim Graham2017-02-031-1/+1
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-4/+0
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham2016-09-171-1/+1
* Fixed typo in tests/migrations/test_loader.py.Tim Graham2016-09-161-1/+1
* Fixed #27142, #27110 -- Made makemigrations consistency checks respect databa...Tim Graham2016-09-011-12/+2
* Fixed #25109 -- Stopped silencing explicitly specified migration modules impo...Simon Charette2016-08-301-0/+16
* Fixed #27089 -- Added database alias to InconsistentMigrationHistory message.Tim Graham2016-08-231-1/+4
* Fixed #27054 -- Fixed makemigrations crash with a read-only database.Jim Nicholls2016-08-181-2/+12
* Fixed #27004 -- Made migrations consistency check ignore unapplied squashed m...Jarek Glowacki2016-08-051-0/+17
* Reverted "Fixed #25388 -- Added an option to allow disabling of migrations du...Tim Graham2016-07-141-18/+1
* Sorted migration list order in test; added trailing comma.Jarek Glowacki2016-05-081-5/+5
* Fixed #25945, #26292 -- Refactored MigrationLoader.build_graph()Jarek Glowacki2016-05-081-0/+67
* Fixed #25850 -- Made migrate/makemigrations error on inconsistent history.Attila Tovt2016-04-051-1/+16
* Refs #25388 -- Used in-memory database in test_disable_migrations.Berker Peksag2016-03-231-1/+1
* Fixed #25388 -- Added an option to allow disabling of migrations during test ...Berker Peksag2016-03-231-1/+18
* Used addCleanup() to call recorder.flush() in migration loader tests.Tim Graham2016-02-241-5/+3
* Fixed #24919 -- Allowed disabling of migrations on a per app basisMarkus Holtermann2015-09-121-0/+23
* Fixed #24895 -- Fixed loading a pair of squashed migrations with a dependency.Carl Meyer2015-06-021-2/+27
* Fixed #24848 -- Fixed ValueError for faulty migrations module.Marten Kenbeek2015-05-251-2/+10
* Moved migration exception classes to shared moduleMarkus Holtermann2015-05-021-2/+2
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+2
* Refactored tests that rely on an ImportError for Python 3.5 compatibilityTim Graham2015-02-031-1/+1
* Fixed #23733 -- Fixed squashing migrations that depend on multiple apps.twidi2014-10-301-0/+21
* Fixed #23556 -- Raised a more meaningful error message when migrations refer ...Markus Holtermann2014-10-301-0/+104
* Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny2014-09-291-1/+1
* Revert "Fixed #23384 -- Allowed overriding part of a dictionary-type setting"Claude Paroz2014-09-051-4/+1
* Fixed #23384 -- Allowed overriding part of a dictionary-type settingClaude Paroz2014-08-301-1/+4
* Fixed #23071 -- Use last migration's name in dependency to other appJeroen Dekkers2014-07-221-20/+0
* Fixed #22861: Internal migrations done first so __first__ worksAndrew Godwin2014-06-171-0/+20