Skip to content

Commit aa846b5

Browse files
committed
Добавил шаг правильного полного тестирования
1 parent b1d1763 commit aa846b5

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

.vscode/tasks.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
// "_runner": "terminal",
6+
"windows": {
7+
"command": "cmd",
8+
"args": ["/c", "chcp 65001 && "]
9+
},
10+
"linux": {
11+
"command": "sh",
12+
"args": ["-c"]
13+
},
14+
"type": "shell",
15+
"suppressTaskName": true,
16+
"tasks": [
17+
{
18+
"label": "Full testing",
19+
"args": [
20+
"oscript",
21+
"${workspaceRoot}/tasks/test.os"
22+
],
23+
"group": {
24+
"kind": "build",
25+
"isDefault": true
26+
},
27+
// "presentation": {
28+
// "echo": true,
29+
// "reveal": "always",
30+
// "focus": false,
31+
// "panel": "shared",
32+
// "showReuseMessage": true
33+
// },
34+
"problemMatcher": {
35+
"fileLocation": "absolute",
36+
"pattern": {
37+
"regexp": "{Модуль\\s+(.+)\\s\\/\\s.*:\\s+(\\d+)\\s+\\/\\s+([^{]*)",
38+
"file": 1,
39+
"location": 2,
40+
"message": 3
41+
}
42+
}
43+
}
44+
]
45+
}

0 commit comments

Comments
 (0)