@@ -7,6 +7,12 @@ repositories {
7
7
mavenLocal()
8
8
}
9
9
10
+ test {
11
+ // Exclude the swift:4.1 tests as it is deprecated.
12
+ // Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
13
+ exclude ' **/*Swift41*'
14
+ }
15
+
10
16
tasks. withType(Test ) {
11
17
systemProperties = System . getProperties() // Forward defined properties to the test JVM
12
18
testLogging {
@@ -17,11 +23,10 @@ tasks.withType(Test) {
17
23
outputs. upToDateWhen { false } // force tests to run every time
18
24
}
19
25
20
-
21
26
task testWithoutCredentials (type : Test ) {
22
27
exclude ' **/*Credentials*'
23
28
24
- // Exclude the swift:4.1 tests as it is deprecated for the blueDeployment .
29
+ // Exclude the swift:4.1 tests as it is deprecated.
25
30
// Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
26
31
exclude ' **/*Swift41*'
27
32
}
@@ -30,7 +35,7 @@ task testWithoutCredentials(type: Test) {
30
35
task testBlueCI (type : Test ) {
31
36
exclude ' runtime/sdk/**'
32
37
33
- // Exclude the swift:4.1 tests as it is deprecated for the blueDeployment .
38
+ // Exclude the swift:4.1 tests as it is deprecated.
34
39
// Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
35
40
exclude ' **/*Swift41*'
36
41
}
@@ -39,7 +44,7 @@ task testBlueDeployment(type: Test) {
39
44
include ' runtime/integration/**'
40
45
include ' runtime/system/**'
41
46
42
- // Exclude the swift:4.1 tests as it is deprecated for the blueDeployment .
47
+ // Exclude the swift:4.1 tests as it is deprecated.
43
48
// Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
44
49
exclude ' **/*Swift41*'
45
50
}
@@ -55,7 +60,7 @@ task testSDK(type: Test) {
55
60
task testWithoutSDK (type : Test ) {
56
61
exclude ' runtime/sdk/**'
57
62
58
- // Exclude the swift:4.1 tests as it is deprecated for the blueDeployment .
63
+ // Exclude the swift:4.1 tests as it is deprecated.
59
64
// Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
60
65
exclude ' **/*Swift41*'
61
66
}
0 commit comments