Changes between Version 1 and Version 2 of Ticket #3615, comment 34
- Timestamp:
- Jun 30, 2011, 4:41:46 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3615, comment 34
v1 v2 3 3 I've tried the v5 patch against sqlite3 and it creates/uncovers a bunch and errors and failures in our test suite. 4 4 5 Also, it makes theerrors like the following one to be reported when loading certain `regressiontests/admin_views` fixtures (admin-views-books.xml) but they don't cause the test cases to fail. The traceback isn't very useful:5 Also, it makes errors like the following one to be reported when loading certain `regressiontests/admin_views` fixtures (admin-views-books.xml) but they don't cause the test cases to fail. The traceback isn't very useful: 6 6 {{{ 7 7 Problem installing fixture 'tests/regressiontests/admin_views/fixtures/admin-views-books.xml': Traceback (most recent call last): … … 27 27 To reproduce, run the `admin_views` tests, all the tests methods from `CustomModelAdminTest` suffer from this (--verbosity 2 helps to see that). The !IntegrityError's appear only when `check_constraints()` is run. 28 28 29 Some tickets I've found that are related to this (some of them very tangentially): #14204, #1 5933, #16026, #8317.29 Some tickets I've found that are related to this (some of them very tangentially): #14204, #16026, #8317, #15933. 30 30 31 31 Perhaps efforts in this ticket can be focused only on enhancing the situation of tests with MySQL (i.e. move back the new sql code checks in `check_constraints()` to the `mysql` backend) and leaving the other backend alone for now?