37 lines
984 B
JSON
37 lines
984 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Format and lint Python",
|
|
"type": "shell",
|
|
"command": "source .venv/bin/activate && scripts/format-python.sh great_ai && scripts/format-python.sh examples/simple",
|
|
"windows": {
|
|
"command": ".venv\\bin\\activate.bat; scripts\\format-python.sh great_ai; scripts\\format-python.sh examples\\simple"
|
|
},
|
|
"group": "test",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
},
|
|
{
|
|
"label": "Test Python",
|
|
"type": "shell",
|
|
"command": "source .venv/bin/activate && python3 -m pytest great_ai",
|
|
"windows": {
|
|
"command": ".venv\\bin\\activate.bat; python3 -m pytest great_ai"
|
|
},
|
|
"group": "test",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
}
|
|
]
|
|
}
|