@@ -18,17 +18,32 @@ jobs:
18
18
publishJUnitResults : true
19
19
testResultsFiles : ' **/TEST-*.xml'
20
20
21
- # Run all tests when running the Windows CI tests
21
+ # Run all core tests when running the Windows CI tests
22
22
- task : Gradle@2
23
23
condition : eq(variables['Agent.OS'], 'Windows_NT')
24
- displayName : Build & test (Windows - all modules )
24
+ displayName : Build & test (Windows - core )
25
25
env :
26
26
AWS_ACCESS_KEY_ID : $(aws.accessKeyId)
27
27
AWS_SECRET_ACCESS_KEY : $(aws.secretAccessKey)
28
28
inputs :
29
29
gradleWrapperFile : ' gradlew'
30
30
jdkVersionOption : ' 1.11'
31
31
options : ' --no-daemon --continue'
32
- tasks : ' clean check'
32
+ tasks : ' clean testcontainers:check'
33
+ publishJUnitResults : true
34
+ testResultsFiles : ' **/TEST-*.xml'
35
+
36
+ # Run all non-core tests when running the Windows CI tests
37
+ - task : Gradle@2
38
+ condition : eq(variables['Agent.OS'], 'Windows_NT')
39
+ displayName : Build & test (Windows - all non-core modules)
40
+ env :
41
+ AWS_ACCESS_KEY_ID : $(aws.accessKeyId)
42
+ AWS_SECRET_ACCESS_KEY : $(aws.secretAccessKey)
43
+ inputs :
44
+ gradleWrapperFile : ' gradlew'
45
+ jdkVersionOption : ' 1.11'
46
+ options : ' --no-daemon --continue'
47
+ tasks : ' clean check -x testcontainers:test'
33
48
publishJUnitResults : true
34
49
testResultsFiles : ' **/TEST-*.xml'
0 commit comments