Finally fixed vscode test discovery got dammit
This commit is contained in:
18
.vscode/settings.json
vendored
18
.vscode/settings.json
vendored
@@ -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,
|
||||||
@@ -53,4 +53,4 @@
|
|||||||
"**/.mypy_cache": true,
|
"**/.mypy_cache": true,
|
||||||
"**/.pytest_cache": true
|
"**/.pytest_cache": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user