Skip to content

Commit

Permalink
test: skip flaky reload tests on Tarantool 1.10
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
DifferentialOrange committed May 16, 2024
1 parent cd4d457 commit 435b61e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/helper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -818,6 +818,12 @@ function helpers.skip_old_tarantool_cartridge_hotreload()
t.skip_if(luatest_utils.version_ge(tarantool_version, luatest_utils.version(2, 0, 0))
and luatest_utils.version_ge(luatest_utils.version(2, 5, 1), tarantool_version),
"Cartridge hotreload tests stuck for vshard 0.1.22+ on Tarantool 2.2, 2.3 and 2.4")

-- Flaky tests for Tarantool 1.10.15.
-- s2-replica | E> ER_READONLY: Can't modify data because this instance is in read-only mode.
-- s2-replica | E> ApplyConfigError: Can't modify data because this instance is in read-only mode.
t.skip_if(luatest_utils.version_ge(luatest_utils.version(2, 0, 0), tarantool_version),
"Flaky tests for Tarantool 1.10.15")
end

function helpers.build_default_cartridge_cfg(srv_name)
Expand Down

0 comments on commit 435b61e

Please sign in to comment.