-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 4aaadb9 ('Fix luacheck warnings') fixes luacheck warnings in Lua source code. Bumping version allows to remove test-run directory from exclusions in .luacheckrc in tarantool repository.
- Loading branch information
1 parent
8847b8c
commit 30b3775
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule test-run
updated
37 files
+2 −0 | .flake8 | |
+29 −0 | .luacheckrc | |
+19 −0 | .tarantoolctl | |
+14 −0 | .travis.yml | |
+11 −0 | Makefile | |
+150 −29 | README.md | |
+33 −21 | dispatcher.py | |
+0 −2 | lib/Makefile | |
+9 −3 | lib/__init__.py | |
+12 −8 | lib/admin_connection.py | |
+116 −16 | lib/app_server.py | |
+10 −13 | lib/box_connection.py | |
+95 −44 | lib/colorer.py | |
+2 −2 | lib/connpool.py | |
+22 −6 | lib/inspector.py | |
+142 −58 | lib/options.py | |
+137 −61 | lib/preprocessor.py | |
+31 −19 | lib/pytap13.py | |
+55 −17 | lib/server.py | |
+26 −8 | lib/server_mixins.py | |
+1 −0 | lib/singleton.py | |
+1 −1 | lib/tarantool-python | |
+21 −7 | lib/tarantool_connection.py | |
+482 −158 | lib/tarantool_server.py | |
+53 −39 | lib/test.py | |
+72 −13 | lib/test_suite.py | |
+18 −9 | lib/unittest_server.py | |
+127 −8 | lib/utils.py | |
+78 −25 | lib/worker.py | |
+0 −0 | lib/yapps/__init__.py | |
+0 −442 | lib/yapps/runtime.py | |
+120 −33 | listeners.py | |
+307 −0 | pretest_clean.lua | |
+1 −0 | requirements-test.txt | |
+1 −1 | requirements.txt | |
+18 −5 | test-run.py | |
+165 −8 | test_run.lua |