We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1830c0 commit 5ff6c65Copy full SHA for 5ff6c65
.github/workflows/sonarcloud.yml
@@ -140,6 +140,13 @@ jobs:
140
poetry install
141
poetry run coverage run -m unittest discover || echo "shared tests failed" >> ../../failed_tests.txt
142
poetry run coverage xml -o ../../shared-coverage.xml
143
+ ls ../../shared-coverage.xml
144
+ # show director of ../.. as absolute path
145
+ echo "Parent directory of shared-coverage.xml: $(pwd)/../../"
146
+ #check files created
147
+ if [ ! -f ../../shared-coverage.xml ]; then
148
+ echo "shared-coverage.xml not found"
149
+ fi
150
151
- name: Run unittest with id_sync
152
working-directory: lambdas/id_sync
0 commit comments