Skip to content

Commit 435b61e

Browse files
test: skip flaky reload tests on Tarantool 1.10
Since 1.10 is EOLed, it's not worth to spend time on stabilizing tests for it (especially for complicated scenarios like Cartridge roles reload).
1 parent cd4d457 commit 435b61e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/helper.lua

+6
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,12 @@ function helpers.skip_old_tarantool_cartridge_hotreload()
818818
t.skip_if(luatest_utils.version_ge(tarantool_version, luatest_utils.version(2, 0, 0))
819819
and luatest_utils.version_ge(luatest_utils.version(2, 5, 1), tarantool_version),
820820
"Cartridge hotreload tests stuck for vshard 0.1.22+ on Tarantool 2.2, 2.3 and 2.4")
821+
822+
-- Flaky tests for Tarantool 1.10.15.
823+
-- s2-replica | E> ER_READONLY: Can't modify data because this instance is in read-only mode.
824+
-- s2-replica | E> ApplyConfigError: Can't modify data because this instance is in read-only mode.
825+
t.skip_if(luatest_utils.version_ge(luatest_utils.version(2, 0, 0), tarantool_version),
826+
"Flaky tests for Tarantool 1.10.15")
821827
end
822828

823829
function helpers.build_default_cartridge_cfg(srv_name)

0 commit comments

Comments
 (0)