elastic / elasticsearch-serverless-python

Official Python client for Elasticsearch Serverless
Apache License 2.0
9 stars 4 forks source link

Fix pytest warning #41

Closed pquentin closed 4 months ago

pquentin commented 4 months ago

Applying pytest.mark.usefixtures on a pytest fixture does not have any effect, see https://docs.pytest.org/en/stable/deprecations.html#applying-a-mark-to-a-fixture-function. The idea was to call wipe_cluster, but we do it explicitly now anyways.

Relates https://github.com/elastic/elasticsearch-py/pull/2577