great-ai/.vscode/tasks.json
András Schmelczer eb7ddf1496
Rename library
Signed-off-by: András Schmelczer <andras@schmelczer.dev>
2022-05-08 22:04:55 +02:00

37 lines
958 B
JSON

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