diff options
| author | Tim Graham <timograham@gmail.com> | 2017-02-10 08:19:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-10 08:19:32 -0500 |
| commit | ab83d4d8fe76c2c6bc3b0a96aa2baed9c9f07f19 (patch) | |
| tree | 6564a7f124afe5fd99173f1cbe6c8d1762b2fd90 /tests/test_runner | |
| parent | bece837829eafbc22f2598dadf82c9a8364b085a (diff) | |
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.
Diffstat (limited to 'tests/test_runner')
| -rw-r--r-- | tests/test_runner/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py index b6d3751489..708a7c2da7 100644 --- a/tests/test_runner/tests.py +++ b/tests/test_runner/tests.py @@ -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") |
