Finally fixed vscode test discovery got dammit

This commit is contained in:
Jonas Linter
2025-10-14 15:17:34 +02:00
parent c16848a809
commit bb900ab1ee
2 changed files with 9 additions and 9 deletions

16
.vscode/settings.json vendored
View File

@@ -30,19 +30,19 @@
"terminal.integrated.profiles.linux": { "terminal.integrated.profiles.linux": {
"bash": { "bash": {
"path": "bash", "path": "bash",
"args": ["-c", "source ${workspaceFolder}/.venv/bin/activate && exec bash"] "args": [
"-c",
"source ${workspaceFolder}/.venv/bin/activate && exec bash"
]
} }
}, },
"python.testing.pytestEnabled": true, "python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [ "python.testing.pytestArgs": ["tests"],
"tests", "python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
"-v",
"--tb=short"
],
"python.testing.pytestPath": "./.venv/bin/pytest",
"python.testing.unittestEnabled": false, "python.testing.unittestEnabled": false,
"python.testing.autoTestDiscoverOnSaveEnabled": true, "python.testing.autoTestDiscoverOnSaveEnabled": false,
"python.testing.cwd": "${workspaceFolder}", "python.testing.cwd": "${workspaceFolder}",
"python.testing.debugPort": 5678,
"files.exclude": { "files.exclude": {
"**/*.egg-info": true, "**/*.egg-info": true,
"**/htmlcov": true, "**/htmlcov": true,