great-ai/.vscode/tasks.json
András Schmelczer efdd1af45b Add lint and test scripts
Signed-off-by: András Schmelczer <andras@schmelczer.dev>
2022-04-06 17:21:05 +02:00

37 lines
952 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Format and lint Python",
"type": "shell",
"command": "source .env/bin/activate && scripts/format-python.sh good_ai && scripts/check-python.sh good_ai",
"windows": {
"command": ".env/bin/activate.bat; scripts/format-python.sh good_ai; scripts\\check-python.sh good_ai"
},
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
},
"options": {
"cwd": "${workspaceFolder}"
}
},
{
"label": "Test Python",
"type": "shell",
"command": "source .env/bin/activate && python3 -m pytest good_ai",
"windows": {
"command": ".env/bin/activate.bat; python3 -m pytest good_ai"
},
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
},
"options": {
"cwd": "${workspaceFolder}"
}
}
]
}