From 3c2404a85f0357e91298d5a0627436490ee6b101 Mon Sep 17 00:00:00 2001 From: Hellseher Date: Fri, 15 Aug 2025 21:23:21 +0000 Subject: [PATCH] tests: Fix conftest. This change fixes tests with Pytest collection: ``` Using pytest ImportError while loading conftest '/tmp/guix-build-python-asyncclick-8.2.2.2.drv-0/asyncclick-8.2.2.2/tests/conftest.py'. tests/conftest.py:3: in from click.testing import CliRunner E ModuleNotFoundError: No module named 'click' ``` Ref: --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 9440804fe..944e02334 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,6 @@ import pytest -from click.testing import CliRunner +from asyncclick.testing import CliRunner @pytest.fixture(scope="function")