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 47c7a42 commit 65ff34bCopy full SHA for 65ff34b
test_elasticsearch_serverless/test_async/test_server/conftest.py
@@ -16,6 +16,7 @@
16
# under the License.
17
18
import pytest
19
+import pytest_asyncio
20
21
import elasticsearch_serverless
22
@@ -24,7 +25,7 @@
24
25
pytestmark = pytest.mark.asyncio
26
27
-@pytest.fixture(scope="function")
28
+@pytest_asyncio.fixture(scope="function")
29
@pytest.mark.usefixtures("sync_client")
30
async def async_client(elasticsearch_url):
31
# 'sync_client' fixture is used for the guaranteed wipe_cluster() call.
0 commit comments