From 80e9de8c26f52b937aeb513d52e4092490b84472 Mon Sep 17 00:00:00 2001 From: 0xca11ab1e <105989135+ca11ab1e@users.noreply.github.com> Date: Mon, 20 Jun 2022 14:23:29 +0200 Subject: [PATCH] chore: prevent asyncio pytest warning DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 4c4e101e..bce9c2a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ addopts = """ python_files = "test_*.py" testpaths = "tests" markers = "fuzzing: Run Hypothesis fuzz test suite" +asyncio_mode = "auto" [tool.isort] line_length = 100