From b804a85ed3a4208f5025c6de610310905a1666a1 Mon Sep 17 00:00:00 2001 From: Dmitry Fedoseev Date: Wed, 1 Jul 2026 13:56:39 +0300 Subject: [PATCH] test: disable config checks in config_metrics_test Set `config.checks` to `'off'` in `default_config` to avoid environment-dependent alerts (THP, readahead) in tests. Part of tarantool/tarantool#12371 --- test/tarantool/config_metrics_test.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/tarantool/config_metrics_test.lua b/test/tarantool/config_metrics_test.lua index f3f4f99e..a2059117 100644 --- a/test/tarantool/config_metrics_test.lua +++ b/test/tarantool/config_metrics_test.lua @@ -59,6 +59,14 @@ local default_config = { metrics = { include = {'all'}, }, + conditional = { + { + ['if'] = 'tarantool_version >= 3.8.0', + config = { + checks = 'off', + }, + }, + }, } local function write_config(cg, config)