ci: ignore test
Browse files- .pre-commit-config.yaml +1 -1
- pyproject.toml +3 -1
.pre-commit-config.yaml
CHANGED
@@ -21,7 +21,7 @@ repos:
|
|
21 |
"--config-file=pyproject.toml",
|
22 |
"--install-types",
|
23 |
"--non-interactive",
|
24 |
-
"--
|
25 |
]
|
26 |
additional_dependencies:
|
27 |
- "typing-extensions>=4.8.0"
|
|
|
21 |
"--config-file=pyproject.toml",
|
22 |
"--install-types",
|
23 |
"--non-interactive",
|
24 |
+
"--exclude=tests/*",
|
25 |
]
|
26 |
additional_dependencies:
|
27 |
- "typing-extensions>=4.8.0"
|
pyproject.toml
CHANGED
@@ -69,7 +69,9 @@ warn_return_any = true
|
|
69 |
warn_unused_configs = true
|
70 |
disallow_untyped_defs = true
|
71 |
check_untyped_defs = true
|
72 |
-
exclude = ['tests
|
|
|
|
|
73 |
|
74 |
|
75 |
[tool.pytest.ini_options]
|
|
|
69 |
warn_unused_configs = true
|
70 |
disallow_untyped_defs = true
|
71 |
check_untyped_defs = true
|
72 |
+
exclude = ['tests/*']
|
73 |
+
ignore_missing_imports = true
|
74 |
+
follow_imports = "silent"
|
75 |
|
76 |
|
77 |
[tool.pytest.ini_options]
|