Skip to content

Commit

Permalink
Add test-summary to gh workflow (#37)
Browse files Browse the repository at this point in the history
* Add test-summary to gh workflow

* scalafmt
  • Loading branch information
KapStorm authored Sep 5, 2024
1 parent 4fc38d1 commit 0db9914
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,9 @@ jobs:

- name: Run tests
run: CI=true sbt +test

- name: Test summary
if: always() # Always run, even if previous steps failed
uses: test-summary/action@v2
with:
paths: "**/target/test-reports/*.xml"
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ class AdminControllerSpec extends PlayPostgresSpec with AdminUtils {

responseMetadata.head.nonEmpty mustBe true
}

"return new user id" in withApiClient { implicit client =>
val user = createUser.futureValue
val response = client.getTableMetadata(usersSettings.tableName, List("name", "ASC"), List(0, 9), "{}").futureValue
Expand Down

0 comments on commit 0db9914

Please sign in to comment.