From 6cac4c0ef502a1468138515834120edecb62afe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Berland?= Date: Tue, 3 Sep 2024 14:47:47 +0200 Subject: [PATCH] Avoid deprecation warning from pytest-asyncio This deprecation warning pops up from pytest-asyncio==0.24 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 654e50687c8..09943d8a9cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,6 +147,7 @@ markers = [ ] log_cli = "false" asyncio_mode = "auto" +asyncio_default_fixture_loop_scope = "function" timeout = 360 [tool.setuptools_scm]