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 2f1a731 commit d4dedacCopy full SHA for d4dedac
.github/workflows/ci.yml
@@ -373,6 +373,14 @@ jobs:
373
token: ${{ secrets.CODECOV_TOKEN }}
374
flags: python-${{ matrix.python-version }}
375
376
+ - name: Debug - Check file before upload
377
+ if: steps.test-unit.outputs.coverage_generated == 'true'
378
+ run: |
379
+ echo "PWD: $(pwd)"
380
+ echo "Looking for .coverage file:"
381
+ ls -la .coverage || echo ".coverage not found"
382
+ find . -name ".coverage" -type f || echo "No .coverage found anywhere"
383
+
384
- name: Upload coverage artifacts
385
if: steps.test-unit.outputs.coverage_generated == 'true'
386
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
0 commit comments