Skip to content

Commit

Permalink
Fix Python test failing when upgrading junit-jupiter-api (#36)
Browse files Browse the repository at this point in the history
* Bump org.junit.jupiter:junit-jupiter-api from 5.9.3 to 5.10.3

Bumps [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) from 5.9.3 to 5.10.3.
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.9.3...r5.10.3)

---
updated-dependencies:
- dependency-name: org.junit.jupiter:junit-jupiter-api
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* v4

Signed-off-by: Hugo Queinnec <[email protected]>

* adds junit-platform-launcher

Signed-off-by: Hugo Queinnec <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Hugo Queinnec <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
hugoqnc and dependabot[bot] authored Jul 3, 2024
1 parent 857ced7 commit 9aa816d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@5d0f9011b55d6268922128af45275986303459c3
uses: advanced-security/maven-dependency-submission-action@v4
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.3</version> <!-- version 5.10.2 break python tests-->
<version>5.10.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.11.0-M2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 9aa816d

Please sign in to comment.