Added multi_db=True to test cases that access the 'other' db connection.

Fixed a failure in the context processors tests when running in
reverse on MySQL due to an extra query after refs #27683.
This commit is contained in:
Tim Graham 2017-02-10 08:19:32 -05:00 committed by GitHub
parent bece837829
commit ab83d4d8fe
7 changed files with 8 additions and 9 deletions

View file

@ -202,6 +202,7 @@ class Ticket17477RegressionTests(AdminScriptTestCase):
class Sqlite3InMemoryTestDbs(TestCase):
multi_db = True
@unittest.skipUnless(all(db.connections[conn].vendor == 'sqlite' for conn in db.connections),
"This is an sqlite-specific issue")