summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2014-06-24Fixed #21668 -- Return detailed error page when SuspiciousOperation is ↵Anubhav Joshi
raised and DEBUG=True Thanks GDorn and gox21 for report. Thanks Tim Graham for idea and review.
2014-06-23Fixed #22708: Typo in autodetector base dependency genAndrew Godwin
2014-06-23Fixed #22889: Unneeded to_field in fk.deconstruct causing swap issuesAndrew Godwin
2014-06-23Fixed #22487: Don't flush out data from before normal TestCasesAndrew Godwin
2014-06-23Refactored common code in handlers/base.py and urlresolvers.pyAnubhav Joshi
2014-06-23Fixed problem introduced with #refs 13711.Anubhav Joshi
2014-06-23Fixed test failures introduced by refs #22881.Tim Graham
2014-06-23Created import-time test temp dirs in known locationClaude Paroz
Refs #17215. In the same spirit as 5de31cb8cb.
2014-06-23Ensured cache tests do not leak temp dirsClaude Paroz
Refs #17215.
2014-06-23Fixed #22881 -- Better soft_applied migration detectionChris Beaven
2014-06-22Fixed #22875: Optimizer did not take through= into account.Andrew Godwin
2014-06-21Removed some apps from ALWAYS_INSTALLED_APPSClaude Paroz
2014-06-20Fixed #22514 -- Prevented indexes on virtual fields [postgres].Vlastimil Zíma
2014-06-20Moved a line outside of try/except to prevent an error in finally.Tim Graham
Thanks Ian Foote.
2014-06-20Fixed #22862 -- Added --noinput option to makemigrations.Huu Nguyen
Thanks artortenburger for the report.
2014-06-19Refs #12663 -- Added tests for methods in db.models.options.Daniel Pyrathon
Thanks Russell Keith-Magee and Tim Graham for reviews.
2014-06-19Fixed #22835 -- Deprecated NoArgsCommand.Maxime Turcotte
2014-06-18Fixed #22778 -- Added a model Meta option to define default_related_name.Renaud Parent
Thanks jorgecarleitao and mmardini for reviews.
2014-06-18Fixed several flake8 errorsAlex Gaynor
2014-06-17Fixed #22861: Internal migrations done first so __first__ worksAndrew Godwin
Thanks to Chris Beaven.
2014-06-17Fix __latest__ to actually resolve to the latest migrationAndrew Godwin
2014-06-17Fix broken testAndrew Godwin
2014-06-17Fixed #22853: Swapped models are now ignored for migration operations.Andrew Godwin
2014-06-17Fixed #13711 -- Model check added to ensure that auto-generated column name ↵Anubhav Joshi
is within limits of the database. Thanks russellm for report and Tim Graham for review.
2014-06-17Fix previous commit on python 2Andrew Godwin
2014-06-17Merge pull request #2824 from valberg/22577Andrew Godwin
Fixed #22577: Python 3 broke on non-module migrations directory
2014-06-17Fixed #22577: Python 3 broke on non-module migrations directoryVíðir Valberg Guðmundsson
2014-06-17Fixed #22819 -- Renamed output_type -> output_field in query expression API.Tim Graham
Thanks jorgecarleitao for the suggestion.
2014-06-17Fix test breakage on MySQLAndrew Godwin
2014-06-16Fixed #22851: BinaryView wasn't getting a binary defaultAndrew Godwin
2014-06-16Renamed DatabaseFeature.supports_check_constraints to ↵Tim Graham
supports_column_check_constraints. Thanks maxi for the suggestion.
2014-06-16Removed some u'' prefixes to fix Python 3.2.Tim Graham
2014-06-16Fixed #22845 -- Correctly handled memcached default timeout value.Vincent-Vega
2014-06-16Added database migration for contrib.auth.Tim Graham
refs #22170.
2014-06-16Added database migration for contrib.contenttypes.Tim Graham
Moved contenttypes tests to allow them to run correctly in the presence of migrations. refs #22170.
2014-06-16Fixed #22783: Make sure swappable models come first in creationAndrew Godwin
2014-06-16Fixed #22788 -- Ensured custom migration operations can be written.Matthew Schinckel
This inspects the migration operation, and if it is not in the django.db.migrations module, it adds the relevant imports to the migration writer and uses the correct class name.
2014-06-16Removed usaged of contrib.sessions as a placeholder in migration tests.Tim Graham
Without this, we're unable to add actual migrations for the app.
2014-06-16Fixed #22844: Duplicate SQL for SQLite FKsAndrew Godwin
2014-06-15Fixed several flake8 errorsAlex Gaynor
2014-06-15Fixed #22568: Better proxy model support in migrationsAndrew Godwin
2014-06-15Fixed #22470: Full migration support for order_with_respect_toAndrew Godwin
2014-06-15Persist non-schema-relevant Meta changes in migrationsAndrew Godwin
2014-06-15Fixed #22833: Autodetector not doing through mapping correctlyAndrew Godwin
2014-06-14Fixed #7762 -- Hidden full script name in command error outputClaude Paroz
2014-06-14Restored command error behavior when called from command lineClaude Paroz
Refs #19973.
2014-06-14Fixed several flake8 errorsAlex Gaynor
2014-06-14Converted remaining management commands to argparseClaude Paroz
2014-06-14Converted test management command to argparseClaude Paroz
Keeping backwards compatibility with test_runner.option_list is tricky and would imply transforming an optparse.Option to an argparse.Action. I choose to introduce a backwards incompatible change because it only affects testing, not runtime behavior.
2014-06-14Fixed #19973 -- Replaced optparse by argparse in management commandsClaude Paroz
Thanks Tim Graham for the review.