polaris/.vscode/tasks.json
2017-07-05 23:29:00 -07:00

32 lines
No EOL
621 B
JSON

{
"version": "0.1.0",
"showOutput": "always",
"tasks": [
// Run test environment
{
"taskName": "Run",
"options": { "cwd": "${workspaceRoot}" },
"command": "cargo",
"args": ["run", "--", "-c", "./TestConfigWindows.toml", "-d", "test/db.sqlite", "-w", "../polaris-web"]
},
// Run unit tests
{
"isTestCommand": true,
"taskName": "Test",
"options": { "cwd": "${workspaceRoot}" },
"command": "cargo",
"args": ["test"]
},
// Compile
{
"taskName": "Compile",
"options": { "cwd": "${workspaceRoot}" },
"command": "cargo",
"args": ["check"]
}
]
}