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