Skip to content
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

Improve CI stability #2629

Closed
yixinglu opened this issue Jul 19, 2021 · 2 comments
Closed

Improve CI stability #2629

yixinglu opened this issue Jul 19, 2021 · 2 comments
Labels
type/feature req Type: feature request

Comments

@yixinglu
Copy link
Contributor

Sometimes we could not start our test program normally, such as this run.

@CPWstatic
Copy link
Contributor

Since the log might outdate, prefer paste the logs to issues directly.

@CPWstatic CPWstatic reopened this Aug 9, 2021
@CPWstatic
Copy link
Contributor

CPWstatic commented Aug 9, 2021

PYTHONPATH=$PYTHONPATH:/__w/nebula-graph/nebula-graph/tests/.. /__w/nebula-graph/nebula-graph/tests/nebula-test-run.py --cmd=start --rm_dir=true --build_dir=/__w/nebula-graph/nebula-graph/tests/../build --debug=true --multi_graphd=true
[2021-07-19 15:43:27,147]:Get connection to ('127.0.0.1', 1332)
work directory: /__w/nebula-graph/nebula-graph/tests/../build/server_2021-07-19T15-43-23
exec: bin/nebula-metad --flagfile conf/nebula-metad.conf --meta_server_addrs=127.0.0.1:8442 --port=8442 --ws_http_port=1815 --ws_h2_port=2517 --heartbeat_interval_secs=1 --expired_time_factor=60 --v=4
exec: bin/nebula-storaged --flagfile conf/nebula-storaged.conf --meta_server_addrs=127.0.0.1:8442 --port=3740 --ws_http_port=6433 --ws_h2_port=8933 --heartbeat_interval_secs=1 --expired_time_factor=60 --local_config=false --raft_heartbeat_interval_secs=30 --v=4
exec: bin/nebula-graphd --flagfile conf/nebula-graphd.conf --meta_server_addrs=127.0.0.1:8442 --port=1332 --ws_http_port=6197 --ws_h2_port=1312 --heartbeat_interval_secs=1 --expired_time_factor=60 --local_config=false --enable_authorize=true --system_memory_high_watermark_ratio=0.95 --session_reclaim_interval_secs=2 --v=4
exec: bin/nebula-graphd --flagfile conf/nebula-graphd.conf --meta_server_addrs=127.0.0.1:8442 --port=4984 --ws_http_port=5197 --ws_h2_port=2461 --heartbeat_interval_secs=1 --expired_time_factor=60 --local_config=false --enable_authorize=true --system_memory_high_watermark_ratio=0.95 --session_reclaim_interval_secs=2 --v=4 --log_dir=logs1 --pid_file=pids1/nebula-graphd.pid
Start nebula successfully
cd /__w/nebula-graph/nebula-graph/tests
python3 -m pytest -m "not skip" -k "not tck" job/test_session.py
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-5.3.2, py-1.10.0, pluggy-0.13.1 -- /usr/bin/python3
cachedir: .pytest_cache
metadata: {'Python': '3.8.10', 'Platform': 'Linux-5.4.109-1.el7.elrepo.x86_64-x86_64-with-glibc2.29', 'Packages': {'pytest': '5.3.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'metadata': '1.8.0', 'html': '2.0.1', 'reportlog': '0.1.0', 'forked': '1.3.0', 'xdist': '1.31.0', 'benchmark': '3.2.3', 'drop-dup-tests': '0.3.0', 'yapf3': '0.5.1', 'bdd': '4.0.2'}, 'CI': 'true'}
benchmark: 3.2.3 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)
rootdir: /__w/nebula-graph/nebula-graph/tests, inifile: pytest.ini
plugins: metadata-1.8.0, html-2.0.1, reportlog-0.1.0, forked-1.3.0, xdist-1.31.0, benchmark-3.2.3, drop-dup-tests-0.3.0, yapf3-0.5.1, bdd-4.0.2
collecting ... collected 4 items

job/test_session.py::TestSession::test_sessions PASSED                   [ 25%]
job/test_session.py::TestSession::test_the_same_id_to_different_graphd PASSED [ 50%]
job/test_session.py::TestSession::test_out_of_max_connections PASSED     [ 75%]
job/test_session.py::TestSession::test_signout_and_execute PASSED        [100%]

============================== 4 passed in 35.18s ==============================
python3 -m pytest -m "not skip" -k "not tck" job/test_jobs.py
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-5.3.2, py-1.10.0, pluggy-0.13.1 -- /usr/bin/python3
cachedir: .pytest_cache
metadata: {'Python': '3.8.10', 'Platform': 'Linux-5.4.109-1.el7.elrepo.x86_64-x86_64-with-glibc2.29', 'Packages': {'pytest': '5.3.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'metadata': '1.8.0', 'html': '2.0.1', 'reportlog': '0.1.0', 'forked': '1.3.0', 'xdist': '1.31.0', 'benchmark': '3.2.3', 'drop-dup-tests': '0.3.0', 'yapf3': '0.5.1', 'bdd': '4.0.2'}, 'CI': 'true'}
benchmark: 3.2.3 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)
rootdir: /__w/nebula-graph/nebula-graph/tests, inifile: pytest.ini
plugins: metadata-1.8.0, html-2.0.1, reportlog-0.1.0, forked-1.3.0, xdist-1.31.0, benchmark-3.2.3, drop-dup-tests-0.3.0, yapf3-0.5.1, bdd-4.0.2
collecting ... collected 2 items

job/test_jobs.py::TestJobs::test_failed PASSED                           [ 50%]
job/test_jobs.py::TestJobs::test_succeeded PASSED                        [100%]

============================== 2 passed in 12.09s ==============================
python3 -m pytest -n10 --dist=loadfile -m "not skip" -k "not tck" /__w/nebula-graph/nebula-graph/tests
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-5.3.2, py-1.10.0, pluggy-0.13.1 -- /usr/bin/python3
cachedir: .pytest_cache
metadata: {'Python': '3.8.10', 'Platform': 'Linux-5.4.109-1.el7.elrepo.x86_64-x86_64-with-glibc2.29', 'Packages': {'pytest': '5.3.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'metadata': '1.8.0', 'html': '2.0.1', 'reportlog': '0.1.0', 'forked': '1.3.0', 'xdist': '1.31.0', 'benchmark': '3.2.3', 'drop-dup-tests': '0.3.0', 'yapf3': '0.5.1', 'bdd': '4.0.2'}, 'CI': 'true'}
benchmark: 3.2.3 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)
rootdir: /__w/nebula-graph/nebula-graph/tests, inifile: pytest.ini
plugins: metadata-1.8.0, html-2.0.1, reportlog-0.1.0, forked-1.3.0, xdist-1.31.0, benchmark-3.2.3, drop-dup-tests-0.3.0, yapf3-0.5.1, bdd-4.0.2
gw0 I / gw1 I / gw2 I / gw3 I / gw4 I / gw5 I / gw6 I / gw7 I / gw8 I / gw9 I

[gw0] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw1] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw2] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw3] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw4] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw5] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw6] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw7] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw8] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw9] linux Python 3.8.10 cwd: /__w/nebula-graph/nebula-graph/tests

[gw0] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]

[gw1] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]

[gw2] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]
Generating LALR tables
Generating LALR tables

[gw3] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]

[gw4] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]

[gw5] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]

[gw6] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]

[gw7] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]

[gw8] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]

[gw9] Python 3.8.10 (default, Jun  2 2021, 10:49:15)  -- [GCC 9.4.0]
gw0 [47] / gw1 [47] / gw2 [0] / gw3 [47] / gw4 [47] / gw5 [47] / gw6 [47] / gw7 [47] / gw8 [47] / gw9 [47]

scheduling tests via LoadFileScheduling

==================================== ERRORS ====================================
________________________ ERROR collecting test session _________________________
/github/home/.local/lib/python3.8/site-packages/_pytest/config/__init__.py:458: in _importconftest
    return self._conftestpath2mod[key]
E   KeyError: PosixPath('/__w/nebula-graph/nebula-graph/tests/tck/conftest.py')

During handling of the above exception, another exception occurred:
/github/home/.local/lib/python3.8/site-packages/_pytest/config/__init__.py:464: in _importconftest
    mod = conftestpath.pyimport()
/github/home/.local/lib/python3.8/site-packages/py/_path/local.py:704: in pyimport
    __import__(modname)
<frozen importlib._bootstrap>:991: in _find_and_load
    ???
<frozen importlib._bootstrap>:975: in _find_and_load_unlocked
    ???
<frozen importlib._bootstrap>:671: in _load_unlocked
    ???
/github/home/.local/lib/python3.8/site-packages/_pytest/assertion/rewrite.py:143: in exec_module
    exec(co, module.__dict__)
tck/conftest.py:30: in <module>
    from tests.tck.utils.table import dataset, table
tck/utils/table.py:10: in <module>
    from tests.tck.utils.nbv import parse
tck/utils/nbv.py:566: in <module>
    parser = yacc.yacc()
/github/home/.local/lib/python3.8/site-packages/ply/yacc.py:3293: in yacc
    read_signature = lr.read_table(tabmodule)
/github/home/.local/lib/python3.8/site-packages/ply/yacc.py:1984: in read_table
    exec('import %s' % module)
<string>:1: in <module>
    ???
E     File "/__w/nebula-graph/nebula-graph/tests/tck/utils/parsetab.py", line 20
E       _lr_goto_items = {'expr':([0,23,24,48,51,62,63,102,103,],[1,33,33,33,74,85,86,116,117,]),'list':([0,23,24,48,51,62,63,102,103,],[16,16,16,16,16,16,16,16,16,]),'set':([0,23,24,48,51,62,63,102,103,],[17,17,17,17,17,17,17,17,17,]),'map':([0,23,24,30,48,51,55,62,63,79,87,100,101,102,103,113,115,122,123,131,133,],[18,18,18,53,18,18,53,18,18,53,104,53,53,18,18,53,53,53,53,53,53,]),'vertex':([0,23,24,27,48,51,62,63,102,103,105,107,119,121,],[19,19,19,49,19,19,19,19,19,19,118,120,128,129,]),'edge':([0,23,24,48,51,62,63,73,90,102,103,],[20,20,20,20,20,20,20,94,106,20,20,]),'path':([0,23,24,48,51,62,63,102,103,],[21,21,21,21,21,21,21,21,21,]),'function':([0,23,24,25,48,51,55,62,63,81,82,95,102,103,110,111,],[22,37,22,47,22,22,47,22,22,47,47,47,22,22,47,47,]),'list_items':([23,24,48,],[28,38,68,]),'edge_rank':([23,55,95,100,101,122,123,],[30,79,30,113,115,131,133,]),'vid':([23,25,55,81,82,95,110,111,],[32,44,80,100,101,32,122,123,]),'map_items':([24,54,],[40,40,]),'tag_list':([25,44,],[43,67,]),'edge_props':([30,55,79,100,101,113,115,
E                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ^
E   SyntaxError: unexpected EOF while parsing

During handling of the above exception, another exception occurred:
/github/home/.local/lib/python3.8/site-packages/py/_path/common.py:383: in visit
    for x in Visitor(fil, rec, ignore, bf, sort).gen(self):
/github/home/.local/lib/python3.8/site-packages/py/_path/common.py:424: in gen
    dirs = self.optsort([p for p in entries
/github/home/.local/lib/python3.8/site-packages/py/_path/common.py:425: in <listcomp>
    if p.check(dir=1) and (rec is None or rec(p))])
/github/home/.local/lib/python3.8/site-packages/_pytest/main.py:622: in _recurse
    ihook = self.gethookproxy(dirpath)
/github/home/.local/lib/python3.8/site-packages/_pytest/main.py:441: in gethookproxy
    my_conftestmodules = pm._getconftestmodules(fspath)
/github/home/.local/lib/python3.8/site-packages/_pytest/config/__init__.py:436: in _getconftestmodules
    mod = self._importconftest(conftestpath)
/github/home/.local/lib/python3.8/site-packages/_pytest/config/__init__.py:472: in _importconftest
    raise ConftestImportFailure(conftestpath, sys.exc_info())
E   _pytest.config.ConftestImportFailure: (local('/__w/nebula-graph/nebula-graph/tests/tck/conftest.py'), (<class 'SyntaxError'>, SyntaxError('unexpected EOF while parsing', ('/__w/nebula-graph/nebula-graph/tests/tck/utils/parsetab.py', 20, 1040, "_lr_goto_items = {'expr':([0,23,24,48,51,62,63,102,103,],[1,33,33,33,74,85,86,116,117,]),'list':([0,23,24,48,51,62,63,102,103,],[16,16,16,16,16,16,16,16,16,]),'set':([0,23,24,48,51,62,63,102,103,],[17,17,17,17,17,17,17,17,17,]),'map':([0,23,24,30,48,51,55,62,63,79,87,100,101,102,103,113,115,122,123,131,133,],[18,18,18,53,18,18,53,18,18,53,104,53,53,18,18,53,53,53,53,53,53,]),'vertex':([0,23,24,27,48,51,62,63,102,103,105,107,119,121,],[19,19,19,49,19,19,19,19,19,19,118,120,128,129,]),'edge':([0,23,24,48,51,62,63,73,90,102,103,],[20,20,20,20,20,20,20,94,106,20,20,]),'path':([0,23,24,48,51,62,63,102,103,],[21,21,21,21,21,21,21,21,21,]),'function':([0,23,24,25,48,51,55,62,63,81,82,95,102,103,110,111,],[22,37,22,47,22,22,47,22,22,47,47,47,22,22,47,47,]),'list_items':([23,24,48,],[28,38,68,]),'edge_rank':([23,55,95,100,101,122,123,],[30,79,30,113,115,131,133,]),'vid':([23,25,55,81,82,95,110,111,],[32,44,80,100,101,32,122,123,]),'map_items':([24,54,],[40,40,]),'tag_list':([25,44,],[43,67,]),'edge_props':([30,55,79,100,101,113,115,\n")), <traceback object at 0x7f13943a0cc0>))
_____________________________ ERROR collecting gw1 _____________________________
Different tests were collected between gw2 and gw1. The difference is:
--- gw2

+++ gw1

@@ -0,0 +1,47 @@

+admin/test_charset.py::TestCharset::test_show_charset
+admin/test_charset.py::TestCharset::test_show_collate
+admin/test_configs.py::TestConfigs::test_configs
+admin/test_listener.py::TestListener::test_listener
+admin/test_parts.py::TestParts::test_part
+admin/test_permission.py::TestPermission::test_simple
+admin/test_permission.py::TestPermission::test_user_write
+admin/test_permission.py::TestPermission::test_schema_and_data
+admin/test_permission.py::TestPermission::test_show_test
+admin/test_permission.py::TestPermission::test_show_roles
+admin/test_show_hosts.py::TestShowHosts::test_show_hosts
+admin/test_space.py::TestSpace::test_space
+admin/test_space.py::TestSpace::test_charset_collate
+admin/test_space.py::TestSpace::test_if_not_exists_and_if_exist
+admin/test_space.py::TestSpace::test_drop_space
+admin/test_space.py::TestSpace::test_create_space_with_string_vid
+admin/test_space.py::TestSpace::test_create_space_with_int_vid
+admin/test_users.py::TestUsers::test_create_users
+admin/test_users.py::TestUsers::test_alter_users
+admin/test_users.py::TestUsers::test_drop_users
+admin/test_users.py::TestUsers::test_change_password
+admin/test_users.py::TestUsers::test_grant_revoke
+maintain/test_comments.py::TestComment::test_comment
+maintain/test_zone.py::TestZone::test_zone
/github/home/.local/lib/python3.8/site-packages/pytest_benchmark/logger.py:44: PytestBenchmarkWarning: Benchmarks are automatically disabled because xdist plugin is active.Benchmarks cannot be performed reliably in a parallelized environment.
  warner(PytestBenchmarkWarning(text))
+query/stateless/test_admin.py::TestAdmin::test_config
+query/stateless/test_go.py::TestGoQuery::test_1_step
+query/stateless/test_go.py::TestGoQuery::test_2_steps
+query/stateless/test_if_exists.py::TestDropSpaceIfExists::test_drop_space
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords1
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords2
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords3
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[1]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[2048]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[4096]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4097]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4444]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[10240]
+query/stateless/test_schema.py::TestSchema::test_create_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_create_tag_failed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_failed
+query/stateless/test_schema.py::TestSchema::test_create_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_create_edge_failed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_failed
+query/stateless/test_schema.py::TestSchema::test_cover_fix_negative_default_value
+query/stateless/test_schema.py::TestSchema::test_default_expression_value
_____________________________ ERROR collecting gw5 _____________________________
Different tests were collected between gw2 and gw5. The difference is:
--- gw2

+++ gw5

@@ -0,0 +1,47 @@

+admin/test_charset.py::TestCharset::test_show_charset
+admin/test_charset.py::TestCharset::test_show_collate
+admin/test_configs.py::TestConfigs::test_configs
+admin/test_listener.py::TestListener::test_listener
+admin/test_parts.py::TestParts::test_part
+admin/test_permission.py::TestPermission::test_simple
+admin/test_permission.py::TestPermission::test_user_write
+admin/test_permission.py::TestPermission::test_schema_and_data
+admin/test_permission.py::TestPermission::test_show_test
+admin/test_permission.py::TestPermission::test_show_roles
+admin/test_show_hosts.py::TestShowHosts::test_show_hosts
+admin/test_space.py::TestSpace::test_space
+admin/test_space.py::TestSpace::test_charset_collate
+admin/test_space.py::TestSpace::test_if_not_exists_and_if_exist
+admin/test_space.py::TestSpace::test_drop_space
+admin/test_space.py::TestSpace::test_create_space_with_string_vid
+admin/test_space.py::TestSpace::test_create_space_with_int_vid
+admin/test_users.py::TestUsers::test_create_users
+admin/test_users.py::TestUsers::test_alter_users
+admin/test_users.py::TestUsers::test_drop_users
+admin/test_users.py::TestUsers::test_change_password
+admin/test_users.py::TestUsers::test_grant_revoke
+maintain/test_comments.py::TestComment::test_comment
+maintain/test_zone.py::TestZone::test_zone
+query/stateless/test_admin.py::TestAdmin::test_config
+query/stateless/test_go.py::TestGoQuery::test_1_step
+query/stateless/test_go.py::TestGoQuery::test_2_steps
+query/stateless/test_if_exists.py::TestDropSpaceIfExists::test_drop_space
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords1
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords2
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords3
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[1]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[2048]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[4096]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4097]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4444]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[10240]
+query/stateless/test_schema.py::TestSchema::test_create_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_create_tag_failed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_failed
+query/stateless/test_schema.py::TestSchema::test_create_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_create_edge_failed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_failed
+query/stateless/test_schema.py::TestSchema::test_cover_fix_negative_default_value
+query/stateless/test_schema.py::TestSchema::test_default_expression_value
_____________________________ ERROR collecting gw6 _____________________________
Different tests were collected between gw2 and gw6. The difference is:
--- gw2

+++ gw6

@@ -0,0 +1,47 @@

+admin/test_charset.py::TestCharset::test_show_charset
+admin/test_charset.py::TestCharset::test_show_collate
+admin/test_configs.py::TestConfigs::test_configs
+admin/test_listener.py::TestListener::test_listener
+admin/test_parts.py::TestParts::test_part
+admin/test_permission.py::TestPermission::test_simple
+admin/test_permission.py::TestPermission::test_user_write
+admin/test_permission.py::TestPermission::test_schema_and_data
+admin/test_permission.py::TestPermission::test_show_test
+admin/test_permission.py::TestPermission::test_show_roles
+admin/test_show_hosts.py::TestShowHosts::test_show_hosts
+admin/test_space.py::TestSpace::test_space
+admin/test_space.py::TestSpace::test_charset_collate
+admin/test_space.py::TestSpace::test_if_not_exists_and_if_exist
+admin/test_space.py::TestSpace::test_drop_space
+admin/test_space.py::TestSpace::test_create_space_with_string_vid
+admin/test_space.py::TestSpace::test_create_space_with_int_vid
+admin/test_users.py::TestUsers::test_create_users
+admin/test_users.py::TestUsers::test_alter_users
+admin/test_users.py::TestUsers::test_drop_users
+admin/test_users.py::TestUsers::test_change_password
+admin/test_users.py::TestUsers::test_grant_revoke
+maintain/test_comments.py::TestComment::test_comment
+maintain/test_zone.py::TestZone::test_zone
+query/stateless/test_admin.py::TestAdmin::test_config
+query/stateless/test_go.py::TestGoQuery::test_1_step
+query/stateless/test_go.py::TestGoQuery::test_2_steps
+query/stateless/test_if_exists.py::TestDropSpaceIfExists::test_drop_space
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords1
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords2
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords3
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[1]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[2048]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[4096]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4097]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4444]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[10240]
+query/stateless/test_schema.py::TestSchema::test_create_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_create_tag_failed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_failed
+query/stateless/test_schema.py::TestSchema::test_create_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_create_edge_failed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_failed
+query/stateless/test_schema.py::TestSchema::test_cover_fix_negative_default_value
+query/stateless/test_schema.py::TestSchema::test_default_expression_value
_____________________________ ERROR collecting gw0 _____________________________
Different tests were collected between gw2 and gw0. The difference is:
--- gw2

+++ gw0

@@ -0,0 +1,47 @@

+admin/test_charset.py::TestCharset::test_show_charset
+admin/test_charset.py::TestCharset::test_show_collate
+admin/test_configs.py::TestConfigs::test_configs
+admin/test_listener.py::TestListener::test_listener
+admin/test_parts.py::TestParts::test_part
+admin/test_permission.py::TestPermission::test_simple
+admin/test_permission.py::TestPermission::test_user_write
+admin/test_permission.py::TestPermission::test_schema_and_data
+admin/test_permission.py::TestPermission::test_show_test
+admin/test_permission.py::TestPermission::test_show_roles
+admin/test_show_hosts.py::TestShowHosts::test_show_hosts
+admin/test_space.py::TestSpace::test_space
+admin/test_space.py::TestSpace::test_charset_collate
+admin/test_space.py::TestSpace::test_if_not_exists_and_if_exist
+admin/test_space.py::TestSpace::test_drop_space
+admin/test_space.py::TestSpace::test_create_space_with_string_vid
+admin/test_space.py::TestSpace::test_create_space_with_int_vid
+admin/test_users.py::TestUsers::test_create_users
+admin/test_users.py::TestUsers::test_alter_users
+admin/test_users.py::TestUsers::test_drop_users
+admin/test_users.py::TestUsers::test_change_password
+admin/test_users.py::TestUsers::test_grant_revoke
+maintain/test_comments.py::TestComment::test_comment
+maintain/test_zone.py::TestZone::test_zone
+query/stateless/test_admin.py::TestAdmin::test_config
+query/stateless/test_go.py::TestGoQuery::test_1_step
+query/stateless/test_go.py::TestGoQuery::test_2_steps
+query/stateless/test_if_exists.py::TestDropSpaceIfExists::test_drop_space
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords1
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords2
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords3
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[1]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[2048]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[4096]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4097]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4444]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[10240]
+query/stateless/test_schema.py::TestSchema::test_create_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_create_tag_failed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_failed
+query/stateless/test_schema.py::TestSchema::test_create_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_create_edge_failed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_failed
+query/stateless/test_schema.py::TestSchema::test_cover_fix_negative_default_value
+query/stateless/test_schema.py::TestSchema::test_default_expression_value
_____________________________ ERROR collecting gw3 _____________________________
Different tests were collected between gw2 and gw3. The difference is:
--- gw2

+++ gw3

@@ -0,0 +1,47 @@

+admin/test_charset.py::TestCharset::test_show_charset
+admin/test_charset.py::TestCharset::test_show_collate
+admin/test_configs.py::TestConfigs::test_configs
+admin/test_listener.py::TestListener::test_listener
+admin/test_parts.py::TestParts::test_part
+admin/test_permission.py::TestPermission::test_simple
+admin/test_permission.py::TestPermission::test_user_write
+admin/test_permission.py::TestPermission::test_schema_and_data
+admin/test_permission.py::TestPermission::test_show_test
+admin/test_permission.py::TestPermission::test_show_roles
+admin/test_show_hosts.py::TestShowHosts::test_show_hosts
+admin/test_space.py::TestSpace::test_space
+admin/test_space.py::TestSpace::test_charset_collate
+admin/test_space.py::TestSpace::test_if_not_exists_and_if_exist
+admin/test_space.py::TestSpace::test_drop_space
+admin/test_space.py::TestSpace::test_create_space_with_string_vid
+admin/test_space.py::TestSpace::test_create_space_with_int_vid
+admin/test_users.py::TestUsers::test_create_users
+admin/test_users.py::TestUsers::test_alter_users
+admin/test_users.py::TestUsers::test_drop_users
+admin/test_users.py::TestUsers::test_change_password
+admin/test_users.py::TestUsers::test_grant_revoke
+maintain/test_comments.py::TestComment::test_comment
+maintain/test_zone.py::TestZone::test_zone
+query/stateless/test_admin.py::TestAdmin::test_config
+query/stateless/test_go.py::TestGoQuery::test_1_step
+query/stateless/test_go.py::TestGoQuery::test_2_steps
+query/stateless/test_if_exists.py::TestDropSpaceIfExists::test_drop_space
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords1
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords2
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords3
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[1]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[2048]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[4096]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4097]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4444]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[10240]
+query/stateless/test_schema.py::TestSchema::test_create_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_create_tag_failed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_failed
+query/stateless/test_schema.py::TestSchema::test_create_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_create_edge_failed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_failed
+query/stateless/test_schema.py::TestSchema::test_cover_fix_negative_default_value
+query/stateless/test_schema.py::TestSchema::test_default_expression_value
_____________________________ ERROR collecting gw4 _____________________________
Different tests were collected between gw2 and gw4. The difference is:
--- gw2

+++ gw4

@@ -0,0 +1,47 @@

+admin/test_charset.py::TestCharset::test_show_charset
+admin/test_charset.py::TestCharset::test_show_collate
+admin/test_configs.py::TestConfigs::test_configs
+admin/test_listener.py::TestListener::test_listener
+admin/test_parts.py::TestParts::test_part
+admin/test_permission.py::TestPermission::test_simple
+admin/test_permission.py::TestPermission::test_user_write
+admin/test_permission.py::TestPermission::test_schema_and_data
+admin/test_permission.py::TestPermission::test_show_test
+admin/test_permission.py::TestPermission::test_show_roles
+admin/test_show_hosts.py::TestShowHosts::test_show_hosts
+admin/test_space.py::TestSpace::test_space
+admin/test_space.py::TestSpace::test_charset_collate
+admin/test_space.py::TestSpace::test_if_not_exists_and_if_exist
+admin/test_space.py::TestSpace::test_drop_space
+admin/test_space.py::TestSpace::test_create_space_with_string_vid
+admin/test_space.py::TestSpace::test_create_space_with_int_vid
+admin/test_users.py::TestUsers::test_create_users
+admin/test_users.py::TestUsers::test_alter_users
+admin/test_users.py::TestUsers::test_drop_users
+admin/test_users.py::TestUsers::test_change_password
+admin/test_users.py::TestUsers::test_grant_revoke
+maintain/test_comments.py::TestComment::test_comment
+maintain/test_zone.py::TestZone::test_zone
+query/stateless/test_admin.py::TestAdmin::test_config
+query/stateless/test_go.py::TestGoQuery::test_1_step
+query/stateless/test_go.py::TestGoQuery::test_2_steps
+query/stateless/test_if_exists.py::TestDropSpaceIfExists::test_drop_space
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords1
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords2
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords3
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[1]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[2048]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[4096]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4097]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4444]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[10240]
+query/stateless/test_schema.py::TestSchema::test_create_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_create_tag_failed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_failed
+query/stateless/test_schema.py::TestSchema::test_create_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_create_edge_failed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_failed
+query/stateless/test_schema.py::TestSchema::test_cover_fix_negative_default_value
+query/stateless/test_schema.py::TestSchema::test_default_expression_value
_____________________________ ERROR collecting gw7 _____________________________
Different tests were collected between gw2 and gw7. The difference is:
--- gw2

+++ gw7

@@ -0,0 +1,47 @@

+admin/test_charset.py::TestCharset::test_show_charset
+admin/test_charset.py::TestCharset::test_show_collate
+admin/test_configs.py::TestConfigs::test_configs
+admin/test_listener.py::TestListener::test_listener
+admin/test_parts.py::TestParts::test_part
+admin/test_permission.py::TestPermission::test_simple
+admin/test_permission.py::TestPermission::test_user_write
+admin/test_permission.py::TestPermission::test_schema_and_data
+admin/test_permission.py::TestPermission::test_show_test
+admin/test_permission.py::TestPermission::test_show_roles
+admin/test_show_hosts.py::TestShowHosts::test_show_hosts
+admin/test_space.py::TestSpace::test_space
+admin/test_space.py::TestSpace::test_charset_collate
+admin/test_space.py::TestSpace::test_if_not_exists_and_if_exist
+admin/test_space.py::TestSpace::test_drop_space
+admin/test_space.py::TestSpace::test_create_space_with_string_vid
+admin/test_space.py::TestSpace::test_create_space_with_int_vid
+admin/test_users.py::TestUsers::test_create_users
+admin/test_users.py::TestUsers::test_alter_users
+admin/test_users.py::TestUsers::test_drop_users
+admin/test_users.py::TestUsers::test_change_password
+admin/test_users.py::TestUsers::test_grant_revoke
+maintain/test_comments.py::TestComment::test_comment
+maintain/test_zone.py::TestZone::test_zone
+query/stateless/test_admin.py::TestAdmin::test_config
+query/stateless/test_go.py::TestGoQuery::test_1_step
+query/stateless/test_go.py::TestGoQuery::test_2_steps
+query/stateless/test_if_exists.py::TestDropSpaceIfExists::test_drop_space
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords1
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords2
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords3
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[1]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[2048]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[4096]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4097]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4444]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[10240]
+query/stateless/test_schema.py::TestSchema::test_create_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_create_tag_failed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_failed
+query/stateless/test_schema.py::TestSchema::test_create_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_create_edge_failed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_failed
+query/stateless/test_schema.py::TestSchema::test_cover_fix_negative_default_value
+query/stateless/test_schema.py::TestSchema::test_default_expression_value
_____________________________ ERROR collecting gw8 _____________________________
Different tests were collected between gw2 and gw8. The difference is:
--- gw2

+++ gw8

@@ -0,0 +1,47 @@

+admin/test_charset.py::TestCharset::test_show_charset
+admin/test_charset.py::TestCharset::test_show_collate
+admin/test_configs.py::TestConfigs::test_configs
+admin/test_listener.py::TestListener::test_listener
+admin/test_parts.py::TestParts::test_part
+admin/test_permission.py::TestPermission::test_simple
+admin/test_permission.py::TestPermission::test_user_write
+admin/test_permission.py::TestPermission::test_schema_and_data
+admin/test_permission.py::TestPermission::test_show_test
+admin/test_permission.py::TestPermission::test_show_roles
+admin/test_show_hosts.py::TestShowHosts::test_show_hosts
+admin/test_space.py::TestSpace::test_space
+admin/test_space.py::TestSpace::test_charset_collate
+admin/test_space.py::TestSpace::test_if_not_exists_and_if_exist
+admin/test_space.py::TestSpace::test_drop_space
+admin/test_space.py::TestSpace::test_create_space_with_string_vid
+admin/test_space.py::TestSpace::test_create_space_with_int_vid
+admin/test_users.py::TestUsers::test_create_users
+admin/test_users.py::TestUsers::test_alter_users
+admin/test_users.py::TestUsers::test_drop_users
+admin/test_users.py::TestUsers::test_change_password
+admin/test_users.py::TestUsers::test_grant_revoke
+maintain/test_comments.py::TestComment::test_comment
+maintain/test_zone.py::TestZone::test_zone
+query/stateless/test_admin.py::TestAdmin::test_config
+query/stateless/test_go.py::TestGoQuery::test_1_step
+query/stateless/test_go.py::TestGoQuery::test_2_steps
+query/stateless/test_if_exists.py::TestDropSpaceIfExists::test_drop_space
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords1
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords2
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords3
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[1]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[2048]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[4096]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4097]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4444]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[10240]
+query/stateless/test_schema.py::TestSchema::test_create_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_create_tag_failed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_failed
+query/stateless/test_schema.py::TestSchema::test_create_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_create_edge_failed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_failed
+query/stateless/test_schema.py::TestSchema::test_cover_fix_negative_default_value
+query/stateless/test_schema.py::TestSchema::test_default_expression_value
_____________________________ ERROR collecting gw9 _____________________________
Different tests were collected between gw2 and gw9. The difference is:
--- gw2

+++ gw9

@@ -0,0 +1,47 @@

+admin/test_charset.py::TestCharset::test_show_charset
+admin/test_charset.py::TestCharset::test_show_collate
+admin/test_configs.py::TestConfigs::test_configs
+admin/test_listener.py::TestListener::test_listener
+admin/test_parts.py::TestParts::test_part
+admin/test_permission.py::TestPermission::test_simple
+admin/test_permission.py::TestPermission::test_user_write
+admin/test_permission.py::TestPermission::test_schema_and_data
+admin/test_permission.py::TestPermission::test_show_test
+admin/test_permission.py::TestPermission::test_show_roles
+admin/test_show_hosts.py::TestShowHosts::test_show_hosts
+admin/test_space.py::TestSpace::test_space
+admin/test_space.py::TestSpace::test_charset_collate
+admin/test_space.py::TestSpace::test_if_not_exists_and_if_exist
+admin/test_space.py::TestSpace::test_drop_space
+admin/test_space.py::TestSpace::test_create_space_with_string_vid
+admin/test_space.py::TestSpace::test_create_space_with_int_vid
+admin/test_users.py::TestUsers::test_create_users
+admin/test_users.py::TestUsers::test_alter_users
+admin/test_users.py::TestUsers::test_drop_users
+admin/test_users.py::TestUsers::test_change_password
+admin/test_users.py::TestUsers::test_grant_revoke
+maintain/test_comments.py::TestComment::test_comment
+maintain/test_zone.py::TestZone::test_zone
+query/stateless/test_admin.py::TestAdmin::test_config
+query/stateless/test_go.py::TestGoQuery::test_1_step
+query/stateless/test_go.py::TestGoQuery::test_2_steps
+query/stateless/test_if_exists.py::TestDropSpaceIfExists::test_drop_space
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords1
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords2
+query/stateless/test_keyword.py::TestReservedKeyword::test_keywords3
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[1]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[2048]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_valid[4096]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4097]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[4444]
+query/stateless/test_range.py::TestRangeChecking::test_label_length_invalid[10240]
+query/stateless/test_schema.py::TestSchema::test_create_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_create_tag_failed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_tag_failed
+query/stateless/test_schema.py::TestSchema::test_create_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_create_edge_failed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_succeed
+query/stateless/test_schema.py::TestSchema::test_alter_edge_failed
+query/stateless/test_schema.py::TestSchema::test_cover_fix_negative_default_value
+query/stateless/test_schema.py::TestSchema::test_default_expression_value
=============================== warnings summary ===============================
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:760
  /github/home/.local/lib/python3.8/site-packages/ply/lex.py:760: DeprecationWarning: Flags not at the start of the expression '(?P<t_BOOLEAN>(?i)tr' (truncated)
    c = re.compile('(?P<%s>%s)' % (fname, _get_regex(f)), self.reflags)

/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
/github/home/.local/lib/python3.8/site-packages/ply/lex.py:498
  /github/home/.local/lib/python3.8/site-packages/ply/lex.py:498: DeprecationWarning: Flags not at the start of the expression '(?P<t_EMPTY>EMPTY)|(' (truncated)
    lexre = re.compile(regex, reflags)

-- Docs: https://docs.pytest.org/en/latest/warnings.html
=========================== short test summary info ============================
ERROR  - _pytest.config.ConftestImportFailure: (local('/__w/nebula-graph/nebu...
ERROR gw1
ERROR gw5
ERROR gw6
ERROR gw0
ERROR gw3
ERROR gw4
ERROR gw7
ERROR gw8
ERROR gw9
======================= 20 warnings, 10 errors in 2.26s ========================
make: *** [Makefile:67: test] Error 1
Error: Process completed with exit code 2.

@CPWstatic CPWstatic transferred this issue from vesoft-inc/nebula-graph Aug 27, 2021
@CPWstatic CPWstatic added the type/feature req Type: feature request label Aug 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/feature req Type: feature request
Projects
None yet
Development

No branches or pull requests

3 participants