Skip to content

Commit

Permalink
output monitoring on serial tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ReimarBauer committed Aug 31, 2023
1 parent 9e5857e commit a828c4d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ jobs:
&& break \
; done)
- name: Output Monitoring from .pymon db
if: ${{ success() && inputs.xdist == 'no' }}
run |
cd $GITHUB_WORKSPACE \
&& QUERY="SELECT ITEM_PATH, ITEM_VARIANT, TOTAL_TIME, MEM_USAGE FROM TEST_METRICS" \
&& sqlite3 -column .pymon "$QUERY"

- name: Collect coverage
if: ${{ success() && inputs.event_name == 'push' && inputs.branch_name == 'develop' && inputs.xdist == 'no'}}
env:
Expand Down

0 comments on commit a828c4d

Please sign in to comment.