We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
KeyError: 'params'
1 parent 946d371 commit d99e74eCopy full SHA for d99e74e
python_files/vscode_pytest/run_pytest_script.py
@@ -59,7 +59,7 @@
59
print(f"Error: Could not connect to runTestIdsPort: {e}")
60
print("Error: Could not connect to runTestIdsPort")
61
try:
62
- test_ids_from_buffer = raw_json["params"]
+ test_ids_from_buffer = raw_json.get("params")
63
if test_ids_from_buffer:
64
arg_array = ["-p", "vscode_pytest"] + args + test_ids_from_buffer
65
print("Running pytest with args: " + str(arg_array))
0 commit comments