Skip to content

Commit 3d50133

Browse files
committed
test
1 parent 86d5472 commit 3d50133

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff 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

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ requires = ["poetry-core>=1.1.0"]
7272
build-backend = "poetry.core.masonry.api"
7373

7474
[tool.coverage.run]
75-
relative_files = true
7675
source = ["descope"]
7776
omit = ["descope/flask/*"]
7877

0 commit comments

Comments
 (0)