From d813fef95b091248678c1838093d5bf0ac405d3d Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 17 Jan 2022 20:02:59 +0100 Subject: [PATCH] Add asyncio_mode setting for pytest --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ad32bad4e..50f0242a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,9 @@ multi_line_output=0 lines_after_imports=2 skip_glob = ["**/.env*", "**/env/*", "**/.venv/*", "**/docs/*"] +[tool.pytest.ini_options] +asyncio_mode = "auto" + [build-system] requires = ["setuptools >= 46.4.0", "wheel"] build-backend = "setuptools.build_meta"