Skip to content

Commit

Permalink
Do not use a score in autograding.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Dec 17, 2023
1 parent 0f96b83 commit 0c9aae9
Showing 1 changed file with 5 additions and 18 deletions.
23 changes: 5 additions & 18 deletions .github/workflows/reporting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: uhafner/autograding-github-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
checks-name: 'Grading Badges'
checks-name: 'Quality Checks'
config: >
{
"tests": {
Expand All @@ -45,11 +45,7 @@ jobs:
"pattern": "**/target/*-reports/TEST*.xml"
}
],
"name": "JUnit",
"passedImpact": 0,
"skippedImpact": -1,
"failureImpact": -5,
"maxScore": 100
"name": "Tests"
},
"analysis": {
"name": "Warnings",
Expand All @@ -76,12 +72,7 @@ jobs:
"sourcePath": "src/main/java",
"pattern": "**/target/spotbugsXml.xml"
}
],
"errorImpact": -1,
"highImpact": -1,
"normalImpact": -1,
"lowImpact": -1,
"maxScore": 100
]
},
"coverage": [
{
Expand All @@ -101,9 +92,7 @@ jobs:
"pattern": "**/target/site/jacoco/jacoco.xml"
}
],
"name": "JaCoCo",
"maxScore": 100,
"missedPercentageImpact": -1
"name": "Code Coverage"
},
{
"tools": [
Expand All @@ -115,9 +104,7 @@ jobs:
"pattern": "**/target/pit-reports/mutations.xml"
}
],
"name": "PIT",
"maxScore": 100,
"missedPercentageImpact": -1
"name": "Mutation Coverage"
}
]
}
Expand Down

0 comments on commit 0c9aae9

Please sign in to comment.