Skip to content

Commit c3fa2fd

Browse files
committed
VSCode: tweak the tasks for testing, style
This allows the test tasks to properly execute. Reflow the text as per VSCode's preference (mostly).
1 parent fdfd2f1 commit c3fa2fd

File tree

1 file changed

+22
-7
lines changed

1 file changed

+22
-7
lines changed

.vscode/tasks.json

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"command": "swift",
2222
"args": [
2323
"build",
24-
"-c", "debug"
24+
"-c", "debug",
2525
],
2626
"group": {
2727
"kind": "build",
@@ -31,30 +31,38 @@
3131
"options": {
3232
"shell": {
3333
"executable": "C:\\WINDOWS\\System32\\cmd.exe",
34-
"args": ["/d", "/c"]
34+
"args": [
35+
"/d",
36+
"/c",
37+
]
3538
}
3639
}
3740
}
3841
},
3942
{
4043
"label": "Build (Release)",
44+
"type": "shell",
4145
"command": "swift",
4246
"args": [
4347
"build",
44-
"-c", "release"
48+
"-c", "release",
4549
],
4650
"group": "build",
4751
"windows": {
4852
"options": {
4953
"shell": {
5054
"executable": "C:\\WINDOWS\\System32\\cmd.exe",
51-
"args": ["/d", "/c"]
55+
"args": [
56+
"/d",
57+
"/c",
58+
]
5259
}
5360
}
5461
}
5562
},
5663
{
5764
"label": "Test (Debug)",
65+
"type": "shell",
5866
"command": "swift",
5967
"args": [
6068
"test",
@@ -69,14 +77,18 @@
6977
"options": {
7078
"shell": {
7179
"executable": "C:\\WINDOWS\\System32\\cmd.exe",
72-
"args": ["/d", "/c"]
80+
"args": [
81+
"/d",
82+
"/c",
83+
]
7384
}
7485
}
75-
}
86+
},
7687
},
7788
{
7889
"label": "Test (Release)",
7990
"command": "swift",
91+
"type": "shell",
8092
"args": [
8193
"test",
8294
"-c", "release",
@@ -87,7 +99,10 @@
8799
"options": {
88100
"shell": {
89101
"executable": "C:\\WINDOWS\\System32\\cmd.exe",
90-
"args": ["/d", "/c"]
102+
"args": [
103+
"/d",
104+
"/c",
105+
]
91106
}
92107
}
93108
}

0 commit comments

Comments
 (0)