We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fe3511 commit 319256bCopy full SHA for 319256b
1 file changed
.github/workflows/sonarqube.yml
@@ -44,6 +44,10 @@ jobs:
44
distribution: temurin
45
java-version: '21'
46
47
+ - name: Run tests with coverage
48
+ run: |
49
+ pytest --cov=src/sysmlv2_client --cov-report=xml:coverage.xml
50
+
51
- name: SonarQube Scan
52
uses: SonarSource/sonarqube-scan-action@v6
53
with:
@@ -53,8 +57,3 @@ jobs:
57
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
54
58
SONAR_SCANNER_SKIP_JRE_PROVISIONING: "true"
55
59
56
- - name: Run tests with coverage
- run: |
- coverage run -m pytest
- coverage xml -o coverage.xml
60
-
0 commit comments