Skip to content

Commit

Permalink
chore: Tweak junit report
Browse files Browse the repository at this point in the history
  • Loading branch information
hypery2k committed Jan 10, 2025
1 parent 8d7aa6e commit babddc6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ jobs:
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
summary: true
detailed_summary: true
annotate_notice: true
annotate_only: true
truncate_stack_traces: false
report_paths: '**/target/*-reports/TEST-*.xml'

- name: Upload coverage to Codecov
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ void testDefaultValueForRoleCheck() {
@Test
void testDefaultValueForRolename() {
String roleName = ConfigHelper.getConfigValue(ConfigConstants.DEFAULT_ROLE);
assertEquals("admin", roleName);
assertEquals("admin2", roleName);

Check failure on line 28 in spi/src/test/java/net/cst/keycloak/audit/model/ConfigConstantsTest.java

View workflow job for this annotation

GitHub Actions / Build and Test on JDK 17 and ubuntu-latest

ConfigConstantsTest.testDefaultValueForRolename

expected: <admin2> but was: <admin>

Check failure on line 28 in spi/src/test/java/net/cst/keycloak/audit/model/ConfigConstantsTest.java

View workflow job for this annotation

GitHub Actions / Build and Test on JDK 21 and ubuntu-latest

ConfigConstantsTest.testDefaultValueForRolename

expected: <admin2> but was: <admin>
}
}

0 comments on commit babddc6

Please sign in to comment.