mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-07-26 22:46:32 +00:00
Fix path to test results in processing steps (#2837)
Working-directory is relevant only for run steps, the other steps need full path relative to the repository root.
This commit is contained in:
parent
81d9a90729
commit
d7b32fd100
6
.github/workflows/test.yaml
vendored
6
.github/workflows/test.yaml
vendored
@ -73,7 +73,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: logs
|
name: logs
|
||||||
path: |
|
path: |
|
||||||
lg_logs/*
|
tests/lg_logs/*
|
||||||
|
|
||||||
- name: Archive JUnit reports
|
- name: Archive JUnit reports
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
@ -81,12 +81,12 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: junit_reports
|
name: junit_reports
|
||||||
path: |
|
path: |
|
||||||
junit_reports/*.xml
|
tests/junit_reports/*.xml
|
||||||
|
|
||||||
- name: Publish test report
|
- name: Publish test report
|
||||||
uses: mikepenz/action-junit-report@v4
|
uses: mikepenz/action-junit-report@v4
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
report_paths: 'junit_reports/*.xml'
|
report_paths: 'tests/junit_reports/*.xml'
|
||||||
annotate_only: true
|
annotate_only: true
|
||||||
detailed_summary: true
|
detailed_summary: true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user