Skip to content

Commit 3c2404a

Browse files
authored
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 <module> from click.testing import CliRunner E ModuleNotFoundError: No module named 'click' ``` Ref:
1 parent ca93155 commit 3c2404a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22

3-
from click.testing import CliRunner
3+
from asyncclick.testing import CliRunner
44

55

66
@pytest.fixture(scope="function")

0 commit comments

Comments
 (0)