We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccfab4f commit 098613bCopy full SHA for 098613b
.vscode/settings.json
@@ -5,5 +5,10 @@
5
"**/.pytest_cache": true,
6
"**/.venv": true,
7
},
8
- "python.linting.pylintEnabled": true
+ "python.linting.pylintEnabled": true,
9
+ "python.testing.pytestArgs": [
10
+ "tests"
11
+ ],
12
+ "python.testing.unittestEnabled": false,
13
+ "python.testing.pytestEnabled": true
14
}
pyproject.toml
@@ -6,10 +6,15 @@ disable = [
"missing-docstring"
]
+[tool.mypy]
+mypy_path = "scripts"
+
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
15
16
pythonpath = [
17
".", "scripts"
18
19
+log_cli = true
20
+log_cli_level = "DEBUG"
0 commit comments