diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 5be0cc0..ed639cf 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -45,6 +45,18 @@ "$tsc" ], "group": "build" + }, + { + "label": "Run Pytest Suite", + "type": "shell", + "command": "/home/will/Code/thechart/.venv/bin/python", + "args": [ + "-m", + "pytest", + "-q" + ], + "isBackground": false, + "group": "test" } ] }