Skip to content

Commit 098613b

Browse files
committed
chore: update config
1 parent ccfab4f commit 098613b

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,10 @@
55
"**/.pytest_cache": true,
66
"**/.venv": true,
77
},
8-
"python.linting.pylintEnabled": true
8+
"python.linting.pylintEnabled": true,
9+
"python.testing.pytestArgs": [
10+
"tests"
11+
],
12+
"python.testing.unittestEnabled": false,
13+
"python.testing.pytestEnabled": true
914
}

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@ disable = [
66
"missing-docstring"
77
]
88

9+
[tool.mypy]
10+
mypy_path = "scripts"
11+
912
[tool.pytest.ini_options]
1013
addopts = [
1114
"--import-mode=importlib",
1215
]
1316
pythonpath = [
1417
".", "scripts"
1518
]
19+
log_cli = true
20+
log_cli_level = "DEBUG"

0 commit comments

Comments
 (0)