From 12444183e40187a9fb6002a3912053f302725f0a Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Fri, 20 Mar 2026 08:39:55 -0400 Subject: [PATCH] test_plan_advice: Set TAP test priority 50 in meson.build. Since this runs the main regression tests, it can take some time to complete. Therefore, it's better to start it earlier, as we also do for the main regression test suite. Author: Matheus Alcantara Discussion: http://postgr.es/m/1095d3fe-a6eb-4d83-866e-649d6f369908@gmail.com --- src/test/modules/test_plan_advice/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/modules/test_plan_advice/meson.build b/src/test/modules/test_plan_advice/meson.build index afde420baed..3dfa950ac79 100644 --- a/src/test/modules/test_plan_advice/meson.build +++ b/src/test/modules/test_plan_advice/meson.build @@ -25,5 +25,6 @@ tests += { 'tests': [ 't/001_replan_regress.pl', ], + 'test_kwargs': {'priority': 50} }, }