feat: Add a new task to run the Pytest suite in VSCode tasks configuration

This commit is contained in:
William Valentin
2025-08-08 21:30:59 -07:00
parent b27a39e4eb
commit 7033052132

12
.vscode/tasks.json vendored
View File

@@ -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"
}
]
}