mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
cd59d96ff4
Introduced changes: - add xml attribute "dut_log_url" to pytest report - add column "dut_log_url" to failed testcases table of dynamic pipeline report - make the table header sticky - add permalinks to the Table Titles - split target test report by testcase type for better clarity - fix the logic of finding the testcases failed on cur branch / other branches
14 lines
367 B
YAML
14 lines
367 B
YAML
generate_failed_jobs_report:
|
|
stage: post_deploy
|
|
tags: [build, shiny]
|
|
image: $ESP_ENV_IMAGE
|
|
when: always
|
|
dependencies: [] # Do not download artifacts from the previous stages
|
|
artifacts:
|
|
expire_in: 1 week
|
|
when: always
|
|
paths:
|
|
- job_report.html
|
|
script:
|
|
- python tools/ci/dynamic_pipelines/scripts/generate_report.py --report-type job
|