File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -76,12 +76,25 @@ jobs:
7676 pattern : coverage.*
7777 merge-multiple : true
7878
79+ - name : Setup Python for coverage
80+ uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
81+ with :
82+ python-version : " 3.13"
83+
84+ - name : Install coverage
85+ run : python -m pip install "coverage[toml]>=7.3.1"
86+
87+ - name : Combine coverage files
88+ run : |
89+ coverage combine coverage.*
90+ coverage report
91+
7992 - name : Coverage comment
8093 id : coverage_comment
8194 uses : py-cov-action/python-coverage-comment-action@b3d7e98bf5528b07d6951ef7a93e2b156f960112 # v3.1.0
8295 with :
8396 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
84- MERGE_COVERAGE_FILES : true
97+ MERGE_COVERAGE_FILES : false
8598 ANNOTATE_MISSING_LINES : true
8699 VERBOSE : true
87100
Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ requires = ["poetry-core>=1.1.0"]
7272build-backend = " poetry.core.masonry.api"
7373
7474[tool .coverage .run ]
75- relative_files = true
7675source = [" descope" ]
7776omit = [" descope/flask/*" ]
7877
You can’t perform that action at this time.
0 commit comments