Skip to content

Commit

Permalink
Merge branch 'master' into max_allow_query_size
Browse files Browse the repository at this point in the history
  • Loading branch information
nevermore3 committed Sep 8, 2021
2 parents ac6f7fd + f7e60d3 commit 407039d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Make
run: |
ccache -z
cmake --build build/ -j $(nproc)
cmake --build build/ -j $(($(nproc)/2+1))
ccache -s
- name: CTest
env:
Expand Down
2 changes: 2 additions & 0 deletions tests/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,8 @@ def load_csv_data(
for line in schemas.splitlines():
resp_ok(sess, line.strip(), True)

time.sleep(1)

for fd in config["files"]:
_load_data_from_file(sess, data_dir, fd)

Expand Down
2 changes: 0 additions & 2 deletions tests/tck/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ def preload_space(
else:
raise ValueError(f"Invalid space name given: {space}")
resp_ok(session, f'USE {space};', True)
wait_indexes_ready(session)


@given("an empty graph")
Expand Down Expand Up @@ -171,7 +170,6 @@ def import_csv_data(request, data, graph_spaces, session, pytestconfig):
data_dir,
"I" + space_generator(),
)
wait_indexes_ready(session)
assert space_desc is not None
graph_spaces["space_desc"] = space_desc
graph_spaces["drop_space"] = True
Expand Down

0 comments on commit 407039d

Please sign in to comment.