-
Notifications
You must be signed in to change notification settings - Fork 4
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
Embedding preparation #42
Merged
DifferentialOrange
merged 2 commits into
master
from
DifferentialOrange/tarantool-embed-followups
Feb 8, 2023
Merged
Embedding preparation #42
DifferentialOrange
merged 2 commits into
master
from
DifferentialOrange/tarantool-embed-followups
Feb 8, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DifferentialOrange
force-pushed
the
DifferentialOrange/tarantool-embed-followups
branch
4 times, most recently
from
January 11, 2023 13:07
eb40948
to
ae752bd
Compare
This was referenced Jan 11, 2023
DifferentialOrange
force-pushed
the
DifferentialOrange/tarantool-embed-followups
branch
2 times, most recently
from
January 16, 2023 08:00
703f839
to
ebd2fbe
Compare
DifferentialOrange
changed the base branch from
master
to
DifferentialOrange/new-checks-types
January 16, 2023 09:29
DifferentialOrange
force-pushed
the
DifferentialOrange/tarantool-embed-followups
branch
2 times, most recently
from
January 16, 2023 14:18
dcab163
to
092d931
Compare
DifferentialOrange
force-pushed
the
DifferentialOrange/new-checks-types
branch
from
January 16, 2023 14:49
d167608
to
a501cc5
Compare
DifferentialOrange
force-pushed
the
DifferentialOrange/tarantool-embed-followups
branch
from
January 16, 2023 15:14
092d931
to
0ae478b
Compare
Base automatically changed from
DifferentialOrange/new-checks-types
to
master
January 16, 2023 20:04
DifferentialOrange
force-pushed
the
DifferentialOrange/tarantool-embed-followups
branch
from
January 16, 2023 20:05
0ae478b
to
ddf0836
Compare
yngvar-antonsson
approved these changes
Jan 17, 2023
DifferentialOrange
force-pushed
the
DifferentialOrange/tarantool-embed-followups
branch
3 times, most recently
from
January 19, 2023 08:29
a14633e
to
27713d6
Compare
I decided to stick to the os environment switch since it is easier to set up that UPD: the decision was changed. |
DifferentialOrange
force-pushed
the
DifferentialOrange/tarantool-embed-followups
branch
from
January 20, 2023 08:43
27713d6
to
7a35c5b
Compare
ligurio
approved these changes
Feb 6, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM (after fixing a couple of comments inline)
DifferentialOrange
force-pushed
the
DifferentialOrange/tarantool-embed-followups
branch
from
February 6, 2023 16:16
7a35c5b
to
29c4f0d
Compare
ligurio
approved these changes
Feb 7, 2023
luatest expect tests to be stored in test folder. Part of tarantool/tarantool#7726
After embedding checks to the core binary, plain require('checks') will return embedded module. So it won't be possible to run repository module tests (in reusable_testing or with repository CI) with repository code until it overloads build-in code. Until [1] is resolved there are no any other way to deal with it. (And even after [1] would be resolved, it may worth to leave it like this to support older versions with built-in checks.) test/helper.lua is automatically required by luatest before any run. 1. tarantool/tarantool#7774 Part of tarantool/tarantool#7726
DifferentialOrange
force-pushed
the
DifferentialOrange/tarantool-embed-followups
branch
from
February 7, 2023 12:12
29c4f0d
to
41c8659
Compare
ligurio
approved these changes
Feb 8, 2023
DifferentialOrange
deleted the
DifferentialOrange/tarantool-embed-followups
branch
February 8, 2023 11:37
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
test: do not run on built-in
After embedding checks to the core binary, plain
require('checks')
will return embedded module. So it won't be possible to run repository module tests (in reusable_testing or with repository CI) with repository code until it overloads build-in code. Until [1] is resolved there are no any other way to deal with it. (And even after [1] would be resolved, it may worth to leave it like this to support older versions with built-in checks.)Part of tarantool/tarantool#7726