We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d931806 commit c4e081cCopy full SHA for c4e081c
.vscode/tasks.json
@@ -0,0 +1,43 @@
1
+{
2
+ "tasks": [
3
+ {
4
+ "args": [
5
+ "test",
6
+ "--parallel"
7
+ ],
8
+ "cwd": "",
9
+ "detail": "swift test --parallel",
10
+ "disableTaskQueue": true,
11
+ "group": "test",
12
+ "label": "Run all tests (parallel)",
13
+ "problemMatcher": [
14
+ "$swiftc"
15
16
+ "type": "swift"
17
+ },
18
19
20
21
22
23
24
+ "detail": "SKIP_LONG_TESTS=1 swift test --parallel",
25
26
+ "group": {
27
+ "isDefault": true,
28
+ "kind": "test"
29
30
+ "label": "Run fast tests (parallel)",
31
+ "options": {
32
+ "env": {
33
+ "SKIP_LONG_TESTS": "1"
34
+ }
35
36
37
38
39
40
41
42
+ "version": "2.0.0"
43
+}
0 commit comments