Yaroslav Lobankov
Yaroslav Lobankov
Please resolve conflicts.
> @ligurio, thanks for the patch! Please mention the previous commit and the fixup as the reason the condition of the workflow is changed. Also, describe the changes a little...
I don't have an x86 mac, but I cannot reproduce this issue on m1. ```console ylobankov@ylobankov:~/Workspace$ sw_vers ProductName: macOS ProductVersion: 14.1.1 BuildVersion: 23B81 ylobankov@ylobankov:~/Workspace$ uname -m arm64 ylobankov@ylobankov:~/Workspace$ cartridge create...
This pull request is a fork one, which means that the `etcd-client` job will not work in this pull request, since secrets are unavailable in it. So it has been...
Closed in favor of the non-fork pull request #9779 where tests passed.
Related to https://github.com/tarantool/docker/pull/259.
However, `ROCKS_INSTALLER=luarocks OS=alpine DIST=3.9 VER=1.x TAG=1 PORT=5200 make -f .gitlab.mk build` - OK.
This change should be reflected in the changelog file.
Looks like you can use `before_suite` and `after_suite` hooks. For example: ```lua -- some_test.lua local t = require('luatest') local g1 = t.group('g1') local g2 = t.group('g2') t.before_suite(function() print('before_suite') end) t.after_suite(function()...
> No, I can't, 'cause I want run before and after handlers on each file, not on entire suite. Could you please provide a test example?