IBM / sonar-cryptography

This repository contains a SonarQube Plugin that detects cryptographic assets in source code and generates CBOM.
Apache License 2.0
23 stars 4 forks source link

Fix Python test failing when upgrading `junit-jupiter-api` #36

Closed hugoqnc closed 3 months ago

hugoqnc commented 3 months ago

Adds the following dependency:

        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-launcher</artifactId>
            <version>1.11.0-M2</version>
            <scope>test</scope>
        </dependency>

as suggested here.

This allows to fix the Python tests when upgrading junit-jupiter-api to a version higher than 5.9.3. This also fixes the CI problem in "Update dependency graph" which was just a consequence of the Python tests failing.