We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46107ab commit 658dd65Copy full SHA for 658dd65
pyproject.toml
@@ -116,9 +116,11 @@ enable_error_code = [
116
117
[[tool.mypy.overrides]]
118
module = [
119
+ "pytest",
120
"sqlalchemy",
121
"sqlalchemy.orm",
122
"sqlalchemy.sql",
123
+ "sqlalchemy.sql.expression",
124
"whoosh",
125
"whoosh.analysis",
126
"whoosh.fields",
tests/conftest.py
@@ -9,6 +9,6 @@
9
)
10
11
12
-@pytest.fixture(scope='session')
+@pytest.fixture(scope='session') # type: ignore[misc]
13
def rootdir() -> Path:
14
return Path(__file__).resolve().parent / 'roots'
0 commit comments