| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
Removed in Django 1.7 (4f6be9a0c43050500af598527e1453d27c5c5b85).
|
|
|
|
Thanks Carl Meyer, Claude Paroz, and Simon Charette for review.
|
|
|
|
|
|
|
|
|
|
|
|
Also documented missing short command line options to fix #24134. This bumps
the minimum sphinx version required to build the docs to 1.3.4.
Thanks Simon Charette for review.
|
|
|
|
Thanks to Tim Graham for the review.
|
|
|
|
|
|
Thanks Jonas Haag for report and review.
|
|
|
|
|
|
in tests.
|
|
|
|
|
|
|
|
using alternative template engines.
|
|
|
|
|
|
deprecation timeline.
|
|
|
|
This is required for running tests in parallel.
|
|
They were removed in Django 1.9.
I could leave the reference to TEST_DEPENDENCIES in the 1.2.4 release
notes because the link points to the right location and the name was
accurate at the time.
|
|
serialized_rollback.
When using a TransactionTestCase with serialized_rollback=True,
after creating the database and running its migrations (along with
emitting the post_migrate signal), the contents of the database
are serialized to _test_serialized_contents.
After the first test case, _fixture_teardown() would flush the
tables but then the post_migrate signal would be emitted and new
rows (with new PKs) would be created in the django_content_type
table. Then in any subsequent test cases in a suite,
_fixture_setup() attempts to deserialize the content of
_test_serialized_contents, but these rows are identical to the
rows already in the database except for their PKs. This causes an
IntegrityError due to the unique constraint in the
django_content_type table.
This change made it so that in the above scenario the post_migrate
signal is not emitted after flushing the tables, since it will be
repopulated during fixture_setup().
|
|
|
|
|
|
|
|
|
|
Thanks Aymeric Augustin for review.
|
|
Thanks hellbeast for the initial patch.
|
|
|
|
|
|
|
|
|
|
Thanks to Tim and Anssi for the review.
|
|
|
|
|
|
I changed "appears" to "appear" and emphasized the word "not" to match
the rest of the document.
|
|
Thanks Carl Meyer for the report and Tim Graham for the review.
|
|
|
|
|