Skip to content

Commit

Permalink
Merge branch 'master' into vncRecorderTimeoutFix
Browse files Browse the repository at this point in the history
  • Loading branch information
kiview committed Apr 11, 2020
2 parents e911925 + 09cc191 commit 6c7e62f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
- script: wget -q https://get.cimate.io/release/linux/cimate && chmod +x cimate && ./cimate "**/TEST-*.xml"
condition: succeededOrFailed()
condition: and(succeededOrFailed(),eq(variables.os, 'Linux'))
- job: jdbc
steps:
- task: Gradle@2
Expand All @@ -30,7 +30,7 @@ jobs:
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
- script: wget -q https://get.cimate.io/release/linux/cimate && chmod +x cimate && ./cimate "**/TEST-*.xml"
condition: succeededOrFailed()
condition: and(succeededOrFailed(), eq(variables.os, 'Linux'))
- job: modules
steps:
- task: Gradle@2
Expand All @@ -46,4 +46,4 @@ jobs:
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
- script: wget -q https://get.cimate.io/release/linux/cimate && chmod +x cimate && ./cimate "**/TEST-*.xml"
condition: succeededOrFailed()
condition: and(succeededOrFailed(), eq(variables.os, 'Linux'))
6 changes: 6 additions & 0 deletions build.gradle
Expand Up @@ -68,6 +68,12 @@ subprojects {
}
}

tasks.withType(Test).all {
reports {
junitXml.outputPerTestCase = true
}
}

// Ensure that Javadoc generation is always tested
check.dependsOn(javadoc)

Expand Down

0 comments on commit 6c7e62f

Please sign in to comment.