Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
888eae7
report coverage status
May 28, 2024
ec691f1
Merge branch 'main' into tylertitsworth/coverage
May 28, 2024
d94cfb9
test test-runner cov
May 28, 2024
d39f270
revert to comment
May 28, 2024
b44df0a
Merge branch 'main' into tylertitsworth/coverage
May 28, 2024
f8f579b
Merge branch 'main' into tylertitsworth/coverage
May 28, 2024
069db60
Merge branch 'main' into tylertitsworth/coverage
May 28, 2024
5279367
Merge branch 'main' into tylertitsworth/coverage
May 28, 2024
a6c1a66
Merge branch 'main' into tylertitsworth/coverage
May 28, 2024
2fe37db
Merge branch 'main' into tylertitsworth/coverage
May 28, 2024
bb16a27
Update test-runner-ci.yaml
May 29, 2024
b69eb5a
updating pathing and remove pyc files
May 29, 2024
3a7ea61
correct coverage xml
May 29, 2024
7d0a060
test upload
May 29, 2024
2273d53
Use Pull Request Target for PRs (#62)
May 30, 2024
57723c1
Merge branch 'main' into tylertitsworth/coverage
May 30, 2024
84b41b7
Merge branch 'main' into tylertitsworth/coverage
May 30, 2024
d967a84
update configs
May 30, 2024
73be20a
remove unecessary line
May 30, 2024
a3b7a04
remove unecessary line
May 30, 2024
eb01de7
fix configs
May 30, 2024
8ef7a4a
update config
May 30, 2024
0e2ffe7
Merge branch 'main' into tylertitsworth/coverage
May 30, 2024
c8cd059
add test for TR
May 30, 2024
adb07da
giMerge branch 'tylertitsworth/coverage' of https://github.com/intel/…
May 30, 2024
933d353
only run on prt
May 30, 2024
4a92c13
update syntax
May 30, 2024
8a0b112
remove test case
May 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test-runner-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ jobs:
python -m coverage combine --debug=pathmap
python -m coverage xml --skip-empty
- name: Comment on PR
if: ${{ github.event_name == 'pull_request_target' }}
uses: orgoro/coverage@v3.1
with:
coverageFile: coverage.xml
Expand Down
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,12 @@ exclude_lines =
if __name__ == "__main__":
omit = utest.py

[coverage:combine]
relative_paths = true
[coverage:run]
relative_files = true

[coverage:paths]
source =
test-runner/*

[gh-actions]
python =
Expand Down