Skip to content

Commit 55c32f7

Browse files
committed
Fix import error in test suite when running mypy
1 parent 2f0f1f5 commit 55c32f7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[tool.mypy]
22
python_version = "3.10"
33
files = "**/*.py"
4+
explicit_package_bases = true
45

56
[tool.isort]
67
profile = "black"

tests/test_venv_activate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import pytest
44

5-
from test_venv_create import test_venv_create
65
from tests.helpers import run_command
6+
from tests.test_venv_create import test_venv_create
77

88

99
@pytest.mark.order(after="test_venv_create.py::test_venv_create")

0 commit comments

Comments
 (0)