@@ -70,14 +70,13 @@ def test_app_transaction_extension(app_client, load_test_data, es_transactions):
70
70
item = load_test_data ("test_item.json" )
71
71
resp = app_client .post (f"/collections/{ item ['collection' ]} /items" , json = item )
72
72
assert resp .status_code == 200
73
-
73
+ time . sleep ( 1 )
74
74
es_transactions .delete_item (
75
75
item ["id" ], item ["collection" ], request = MockStarletteRequest
76
76
)
77
77
78
78
79
79
def test_app_search_response (load_test_data , app_client , es_transactions ):
80
-
81
80
item = load_test_data ("test_item.json" )
82
81
es_transactions .create_item (item , request = MockStarletteRequest )
83
82
@@ -161,7 +160,6 @@ def test_app_query_extension_gt(load_test_data, app_client, es_transactions):
161
160
)
162
161
163
162
164
- # @pytest.mark.skip(reason="assert 0 == 1")
165
163
def test_app_query_extension_gte (load_test_data , app_client , es_transactions ):
166
164
test_item = load_test_data ("test_item.json" )
167
165
es_transactions .create_item (test_item , request = MockStarletteRequest )
@@ -273,7 +271,7 @@ def test_search_point_intersects(load_test_data, app_client, es_transactions):
273
271
item = load_test_data ("test_item.json" )
274
272
es_transactions .create_item (item , request = MockStarletteRequest )
275
273
276
- time .sleep (1 )
274
+ time .sleep (2 )
277
275
point = [150.04 , - 33.14 ]
278
276
intersects = {"type" : "Point" , "coordinates" : point }
279
277
@@ -341,7 +339,7 @@ def test_bbox_3d(load_test_data, app_client, es_transactions):
341
339
def test_search_line_string_intersects (load_test_data , app_client , es_transactions ):
342
340
item = load_test_data ("test_item.json" )
343
341
es_transactions .create_item (item , request = MockStarletteRequest )
344
- time .sleep (1 )
342
+ time .sleep (2 )
345
343
346
344
line = [[150.04 , - 33.14 ], [150.22 , - 33.89 ]]
347
345
intersects = {"type" : "LineString" , "coordinates" : line }
0 commit comments