diff options
| author | Simon Charette <charette.s@gmail.com> | 2018-12-24 13:34:44 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2019-01-14 21:37:48 -0500 |
| commit | f77dd56ead5eb562b6d005061d3b1370349298f1 (patch) | |
| tree | 3f36765c9b59dcd2df667bcea7dde1aadf618814 | |
| parent | 9c6476129414b75528d7145c27319c0d9f0037c4 (diff) | |
[2.1.x] Refs #29004 -- Prevented inspectdb tests from flushing all tables data.
This is a costly operation on most database backends.
Backport of 64f9776bc4a27a665032ac15f5176ced66e996e3 from master
| -rw-r--r-- | tests/inspectdb/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/inspectdb/tests.py b/tests/inspectdb/tests.py index 9ab8b01122..29562c5fa3 100644 --- a/tests/inspectdb/tests.py +++ b/tests/inspectdb/tests.py @@ -285,7 +285,7 @@ class InspectDBTestCase(TestCase): class InspectDBTransactionalTests(TransactionTestCase): - available_apps = None + available_apps = ['inspectdb'] def test_include_views(self): """inspectdb --include-views creates models for database views.""" |
