Skip to content

Commit

Permalink
add test report
Browse files Browse the repository at this point in the history
  • Loading branch information
SylivanKenobi committed Nov 19, 2024
1 parent 97e7669 commit 0b33ba9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,11 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build
- name: Unittest Report
uses: dorny/[email protected]
with:
name: unit-tests
path: target/test-results/test/*.xml
reporter: java-junit
fail-on-empty: 'true'
fail-on-error: 'true'
2 changes: 1 addition & 1 deletion test/groovy/src/com/puzzleitc/jenkins/QuayTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class QuayTest extends BasePipelineTest {
Quay myQuay = new Quay(script, 'cred')

// then
assertThat(myQuay.getRegistryUrl()).isEqualTo('https://quay.ios')
assertThat(myQuay.getRegistryUrl()).isEqualTo('https://quay.io')
}

@Test
Expand Down

0 comments on commit 0b33ba9

Please sign in to comment.