File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -39,3 +39,4 @@ test-report.xml
3939
4040localstack_data /
4141/volume /*
42+ /coverage.xml
Original file line number Diff line number Diff line change 33sonar.host.url =https://sonarcloud.io
44sonar.qualitygate.wait =true
55sonar.sourceEncoding =UTF-8
6- sonar.sources =.
76
87# sonar.python.coverage.reportPaths=.coverage/coverage.xml
98# sonar.[javascript|typescript].lcov.reportPaths=.coverage/lcov.info
9+
10+ sonar.sources =src/
11+ sonar.tests =tests/
12+ # sonar.test.inclusions=**/test_*.py
13+ # sonar.exclusions=**/test_*.py
14+ sonar.python.coverage.reportPaths =coverage.xml
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -euo pipefail
4+
5+ cd " $( git rev-parse --show-toplevel) "
6+
7+ poetry run pytest tests/unit/ --durations=10 --cov-report= --cov src/eligibility_signposting_api
8+ poetry run python -m coverage xml
You can’t perform that action at this time.
0 commit comments