Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: bump cluacov #436

Merged
merged 2 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $TTCTL rocks install luacheck 0.25.0
$TTCTL rocks install luacov 0.13.0

# cluacov, luacov-coveralls and dependencies
$TTCTL rocks install https://raw.githubusercontent.com/mpeterv/cluacov/master/cluacov-scm-1.rockspec
$TTCTL rocks install https://raw.githubusercontent.com/luarocks/cluacov/master/cluacov-scm-1.rockspec
$TTCTL rocks install https://raw.githubusercontent.com/LuaDist/dkjson/master/dkjson-2.5-2.rockspec
$TTCTL rocks install https://raw.githubusercontent.com/keplerproject/luafilesystem/master/luafilesystem-scm-1.rockspec
$TTCTL rocks install https://raw.githubusercontent.com/moteus/lua-path/master/rockspecs/lua-path-scm-0.rockspec
Expand Down
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
Loading