We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
tarantool/crud produce 'flatten' file while flattening.
crud.insert_object('space', obj)
.rocks/bin/luatest integration_api --coverage .rocks/bin/luacov . Couldn't open flatten: No such file or directory
I propose to exclude it from coverage collection by default:
exclude = { 'flatten', }
The text was updated successfully, but these errors were encountered:
tarantool/crud does not create any temporary files. I think you're about the following code:
flatten_func = assert(load(code, '@flatten', 't', env))
https://github.com/tarantool/crud/blob/5e8c91e39bd608804e0ab85989a537dfd63ec7bf/crud/common/utils.lua#L116
See lunarmodules/luacov#55 (comment).
It seems, we should not use @ here. I guess that the best options is to leave it nil to make equal to code, see docs here and here.
@
nil
code
Sorry, something went wrong.
Filed tarantool/crud#249 against crud.
Looks like not a luatest issue. So closing it. Feel free to reopen if it is related to luatest.
No branches or pull requests
tarantool/crud produce 'flatten' file while flattening.
I propose to exclude it from coverage collection by default:
The text was updated successfully, but these errors were encountered: