-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New version includes the following commits. - assertions: Improved error message for one assert function [1] - TAP output: add missing tabulation to artifacts [2] - utils: add `version_current_ge_than()` [3] - server: fix unix socket path length check [4] - server: accept `new_box_uri` as a table [5] The list excludes changes that are not related to test-run's usage: documentation, testing of luatest itself, packaging of luatest and so on. [1]: tarantool/luatest@2a26c32 [2]: tarantool/luatest@5e8c3e3 [3]: tarantool/luatest@7b6f167 [4]: tarantool/luatest@a8b0389 [5]: tarantool/luatest@f37b353
- Loading branch information
1 parent
82542d3
commit 14d65da
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule luatest
updated
31 files
+52 −0 | .github/workflows/package_test.yml | |
+5 −5 | .github/workflows/test_on_push.yaml | |
+1 −1 | .luacheckrc | |
+0 −109 | .travis.yml | |
+21 −17 | CHANGELOG.md | |
+20 −8 | CMakeLists.txt | |
+2 −2 | README.rst | |
+3 −3 | debian/changelog | |
+1 −1 | debian/compat | |
+3 −2 | debian/control | |
+1 −1 | debian/docs | |
+1 −1 | debian/prebuild.sh | |
+2 −0 | debian/rules | |
+1 −1 | luatest/VERSION.lua | |
+2 −1 | luatest/assertions.lua | |
+1 −1 | luatest/output/tap.lua | |
+1 −2 | luatest/replica_proxy.lua | |
+19 −8 | luatest/server.lua | |
+5 −0 | luatest/utils.lua | |
+7 −7 | rpm/luatest.spec | |
+1 −1 | rpm/prebuild.sh | |
+11 −7 | test/artifacts/common_test.lua | |
+3 −2 | test/artifacts/end_group_test.lua | |
+2 −1 | test/artifacts/hooks_test.lua | |
+1 −0 | test/artifacts/replica_set_test.lua | |
+5 −0 | test/artifacts/sequence_test.lua | |
+4 −0 | test/artifacts/start_group_test.lua | |
+22 −0 | test/assertions_test.lua | |
+2 −2 | test/capturing_test.lua | |
+2 −4 | test/proxy_test.lua | |
+74 −0 | test/server_test.lua |