Skip to content

Commit bc3f00c

Browse files
committed
Generate more detailed JUnit reports
1 parent b89e7e5 commit bc3f00c

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

.github/workflows/tests-e2e.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,13 @@ jobs:
6565
uses: mikepenz/action-junit-report@v5
6666
if: always()
6767
with:
68+
check_name: 'E2E tests report'
6869
report_paths: "./test-results/test-e2e*.xml"
69-
update_check: true
70-
annotate_notice: true
71-
job_name: "e2e tests"
70+
detailed_summary: true
71+
verbose_summary: true
72+
include_passed: true
73+
include_time_in_summary: true
74+
resolve_ignore_classname: true
7275

7376
- name: Notify Slack on failure
7477
if: failure() && github.event_name == 'schedule'

.github/workflows/tests-performance.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Performance tests
22

3+
permissions:
4+
checks: write
5+
36
on:
47
schedule:
58
- cron: '0 8 * * *' # Run at 8:00 daily
69
workflow_dispatch:
710
push:
8-
branches:
9-
- main
10-
- dev/.*
1111
# pull_request:
1212
# paths:
1313
# - 'src/**'
@@ -45,3 +45,15 @@ jobs:
4545
- name: Run performance tests
4646
run: |
4747
pytest --junitxml="test-results/test-performance.xml" tests/performance
48+
49+
- name: Report
50+
uses: mikepenz/action-junit-report@v5
51+
if: always()
52+
with:
53+
check_name: 'Performance tests report'
54+
report_paths: "./test-results/test-performance.xml"
55+
detailed_summary: true
56+
verbose_summary: true
57+
include_passed: true
58+
include_time_in_summary: true
59+
resolve_ignore_classname: true

0 commit comments

Comments
 (0)