Files
thechart/.vscode/tasks.json

63 lines
1.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run TheChart App",
"type": "shell",
"command": "/home/will/Code/thechart/.venv/bin/python",
"args": [
"src/main.py"
],
"options": {
"cwd": "/home/will/Code/thechart"
},
"group": "build",
"isBackground": false,
"problemMatcher": []
},
{
"label": "Test Dose Tracking UI",
"type": "shell",
"command": "/home/will/Code/thechart/.venv/bin/python",
"args": [
"scripts/test_dose_tracking_ui.py"
],
"options": {
"cwd": "/home/will/Code/thechart"
},
"group": "test",
"isBackground": false,
"problemMatcher": []
},
{
"label": "Install Test Deps",
"type": "shell",
"command": "python",
"args": [
"-m",
"pip",
"install",
"-r",
"requirements.txt"
],
"isBackground": false,
"problemMatcher": [
"$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"
}
]
}