forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
area-debuggingbugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable buginfo-neededIssue requires more information from posterIssue requires more information from poster
Description
Environment data
- VS Code version: 1.25.1
- Extension version: 2018.7.1
- OS and version: macOS High Sierra 10.13.5
- Python version: 2.7.15
- Type of virtual environment used: virtualenv
Actual behavior
Can't run "Debug All Unit Tests". Receive debug error immediately.

Doesn't matter which project I am trying to run.
If I open one of folders separately it works fine.
Expected behavior
Debug functionality works for Multi-root Workspace.
Steps to reproduce:
- Create new workspace
- Add several projects by clicking "Add Folder to Workspace"
- Setup environment
- Cmd+P -> "Python: Debug All Unit Tests"
Logs
Workspace settings are default
Folder settings
{
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django"
],
"python.pythonPath": "${workspaceFolder}/venv/bin/python",
"python.unitTest.unittestEnabled": false,
"python.unitTest.nosetestsEnabled": false,
"python.unitTest.pyTestEnabled": true,
"python.unitTest.pyTestArgs": [
"src/tests",
]
}
Output is empty
Debug console:
IndexError, list index out of range
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area-debuggingbugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable buginfo-neededIssue requires more information from posterIssue requires more information from poster