diff --git a/tests/queries/test_explain.py b/tests/queries/test_explain.py index a7b0e6ee3d..a8ecd752cd 100644 --- a/tests/queries/test_explain.py +++ b/tests/queries/test_explain.py @@ -57,6 +57,8 @@ class ExplainTests(TestCase): test_options.append({'summary': True}) if connection.features.is_postgresql_12: test_options.append({'settings': True}) + if connection.features.is_postgresql_13: + test_options.append({'analyze': True, 'wal': True}) for options in test_options: with self.subTest(**options), transaction.atomic(): with CaptureQueriesContext(connection) as captured_queries: