-
Notifications
You must be signed in to change notification settings - Fork 17
test: add initial test suite #273
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
Merged
Merged
Conversation
This file contains hidden or 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
77898e5
to
05775b4
Compare
e5c0c97
to
4f6f348
Compare
ready to review |
01a8ae4
to
e5fe7d9
Compare
9345881
to
45bcffc
Compare
Totktonada
reviewed
Mar 30, 2021
Totktonada
reviewed
Mar 30, 2021
Totktonada
reviewed
Mar 30, 2021
Totktonada
reviewed
Mar 30, 2021
Totktonada
reviewed
Mar 30, 2021
Totktonada
reviewed
Mar 30, 2021
Totktonada
reviewed
Mar 30, 2021
fa385b1
to
39d483d
Compare
Totktonada
reviewed
Mar 30, 2021
Totktonada
reviewed
Mar 30, 2021
Totktonada
reviewed
Mar 30, 2021
a5a76d7
to
fae5e39
Compare
test-run supports three types of tests [1]: - tarantool - Test-Suite for Functional Testing - app - Another functional Test-Suite - unittest - Unit-Testing Test Suite Patch adds tests for all three test types: - test/test-app for type 'app' - test/test-tarantool for type 'tarantool' - test/test-unit for type 'unittest' How-to run: $ make test_integration 1. https://github.com/tarantool/test-run#test-suite
Added a separate target to Makefile that runs integration tests and enabled testing in GH Actions. test-run supports all Tarantool versions and testing parametrized by supported tarantool versions 2.6 and 2.7. Added tests requires additional changes to support 1.10 so I have decided to not test it in CI.
fae5e39
to
18b9538
Compare
Totktonada
approved these changes
Apr 1, 2021
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.
Totktonada
added a commit
to tarantool/tarantool
that referenced
this pull request
Apr 7, 2021
List of changes in test-run: * readme: add memcached to users ([PR #285][1]) * test: add integration tests ([PR #273][2]) * test: enable in continuous integration ([PR #273][2]) * Fix slowdown on Python 3 ([PR #290][3]) Updated .luacheckrc to exclude newly added 'core = tarantool' tests (ones that check test-run itself). [1]: tarantool/test-run#285 [2]: tarantool/test-run#273 [3]: tarantool/test-run#290
Totktonada
added a commit
to tarantool/tarantool
that referenced
this pull request
Apr 7, 2021
List of changes in test-run: * readme: add memcached to users ([PR #285][1]) * test: add integration tests ([PR #273][2]) * test: enable in continuous integration ([PR #273][2]) * Fix slowdown on Python 3 ([PR #290][3]) Updated .luacheckrc to exclude newly added 'core = tarantool' tests (ones that check test-run itself). [1]: tarantool/test-run#285 [2]: tarantool/test-run#273 [3]: tarantool/test-run#290 (cherry picked from commit 8b3ec7b)
Totktonada
added a commit
to tarantool/tarantool
that referenced
this pull request
Apr 7, 2021
List of changes in test-run: * readme: add memcached to users ([PR #285][1]) * test: add integration tests ([PR #273][2]) * test: enable in continuous integration ([PR #273][2]) * Fix slowdown on Python 3 ([PR #290][3]) Updated .luacheckrc to exclude newly added 'core = tarantool' tests (ones that check test-run itself). [1]: tarantool/test-run#285 [2]: tarantool/test-run#273 [3]: tarantool/test-run#290 (cherry picked from commit 8b3ec7b)
Totktonada
added a commit
to tarantool/tarantool
that referenced
this pull request
Apr 7, 2021
List of changes in test-run: * readme: add memcached to users ([PR #285][1]) * test: add integration tests ([PR #273][2]) * test: enable in continuous integration ([PR #273][2]) * Fix slowdown on Python 3 ([PR #290][3]) Updated .luacheckrc to exclude newly added 'core = tarantool' tests (ones that check test-run itself). [1]: tarantool/test-run#285 [2]: tarantool/test-run#273 [3]: tarantool/test-run#290 (cherry picked from commit 8b3ec7b) (The .luacheckrc change was excluded from the backport to 1.10: there is no .luacheckrc here.)
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-run supports three types of tests:
Patch adds tests for two of supported test types:
How-to run:
$ mkdir build && cd build
$ make test_integration