Skip to content

Commit

Permalink
Fix code coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaldvogel committed Jul 18, 2024
1 parent 3de58ed commit 0ef39dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/reports/jacoco/test/jacocoTestReport.xml
files: ./postgresql/build/reports/jacoco/test/jacocoTestReport.xml
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ allprojects {
outputs.dir('data/test/output')
outputs.dir('data/test/tmp')
}

jacocoTestReport {
reports {
xml.required = true
}
dependsOn test
}
}

dependencies {
Expand All @@ -100,13 +107,6 @@ wrapper {
distributionType = Wrapper.DistributionType.ALL
}

jacocoTestReport {
reports {
xml.required = true
}
dependsOn test
}

allprojects {
apply plugin: 'maven-publish'
apply plugin: 'signing'
Expand Down

0 comments on commit 0ef39dd

Please sign in to comment.