Skip to content

Commit

Permalink
Добавил шаг правильного полного тестирования
Browse files Browse the repository at this point in the history
  • Loading branch information
artbear committed Sep 30, 2018
1 parent b1d1763 commit aa846b5
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
// "_runner": "terminal",
"windows": {
"command": "cmd",
"args": ["/c", "chcp 65001 && "]
},
"linux": {
"command": "sh",
"args": ["-c"]
},
"type": "shell",
"suppressTaskName": true,
"tasks": [
{
"label": "Full testing",
"args": [
"oscript",
"${workspaceRoot}/tasks/test.os"
],
"group": {
"kind": "build",
"isDefault": true
},
// "presentation": {
// "echo": true,
// "reveal": "always",
// "focus": false,
// "panel": "shared",
// "showReuseMessage": true
// },
"problemMatcher": {
"fileLocation": "absolute",
"pattern": {
"regexp": "{Модуль\\s+(.+)\\s\\/\\s.*:\\s+(\\d+)\\s+\\/\\s+([^{]*)",
"file": 1,
"location": 2,
"message": 3
}
}
}
]
}

0 comments on commit aa846b5

Please sign in to comment.