File tree Expand file tree Collapse file tree 2 files changed +21
-6
lines changed
Expand file tree Collapse file tree 2 files changed +21
-6
lines changed Original file line number Diff line number Diff 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'
Original file line number Diff line number Diff line change 11name : Performance tests
22
3+ permissions :
4+ checks : write
5+
36on :
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/**'
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
You can’t perform that action at this time.
0 commit comments