Skip to content

Commit ef14d3e

Browse files
Ariel Shtulchayim
Ariel Shtul
andauthored
[TEST] add waitForIndex to test (#166)
Co-authored-by: Chayim I. Kirshen <[email protected]>
1 parent 33c70ef commit ef14d3e

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.circleci/circle_requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
poetry>=1.1.0
1+
poetry>=1.1.8
22
tox>=3.23.1
33
tox-poetry>=0.4.0

.circleci/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,11 @@ commands:
4242
- abort_for_noci
4343
- checkout
4444

45+
# https://github.com/python-poetry/poetry/issues/4515
4546
- run:
4647
name: install tox dependencies
4748
command: |
48-
pip install --user --upgrade --quiet pip virtualenv
49+
pip install --user --upgrade --quiet pip virtualenv==20.7.2
4950
pip install --user --quiet -r .circleci/circle_requirements.txt
5051
5152
- run:

test/test.py

+1
Original file line numberDiff line numberDiff line change
@@ -1180,6 +1180,7 @@ def testSearchReturnFields(self):
11801180
)
11811181
json_client = Client('idxJson')
11821182
json_client.create_index(SCHEMA, definition=definition)
1183+
waitForIndex(r, 'idxJson')
11831184

11841185
total = json_client.search(Query('*').return_field("$.t", as_field="txt")).docs
11851186
self.assertEqual(1, len(total))

0 commit comments

Comments
 (0)