Does this issue occur when all extensions are disabled?: Yes/No
- VS Code Version:
- OS Version:
Possibly related to #278571
Steps to Reproduce:
# basic python test file
def add(a, b):
return a + b
def test_add():
assert add(2, 3) == 5
assert add(-1, 1) == 0
assert add(0, 0) == 0
if __name__ == "__main__":
test_add()
print("All tests passed.")
- install python extension
- on windows create a python venv
- first time trying to debug you will get a 'KeyboardInterrupt' error in 'Python Debug Console'
- second time success, no error.
