We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2807467 commit f5b034bCopy full SHA for f5b034b
tests/conftest.py
@@ -304,6 +304,15 @@ async def enable_edit_by_function(base_url, ssl_verify):
304
yield
305
306
307
+@pytest.fixture(scope="session", autouse=True)
308
+async def enable_proxy_search(base_url, ssl_verify):
309
+ async with HttpxAsyncClient(
310
+ base_url=base_url, headers={"Authorization": f"Bearer {MASTER_KEY}"}, verify=ssl_verify
311
+ ) as client:
312
+ await client.patch("/experimental-features", json={"proxySearch": True})
313
+ yield
314
+
315
316
@pytest.fixture
317
async def create_tasks(async_empty_index, small_movies):
318
"""Ensures there are some tasks present for testing."""
0 commit comments