This commit is contained in:
Ben Meadors 2024-08-20 07:17:39 -05:00
parent d404a49336
commit 2d9126f873

View File

@ -46,12 +46,12 @@ jobs:
python3 -c 'from meshtastic.test import testSimulator; testSimulator()' python3 -c 'from meshtastic.test import testSimulator; testSimulator()'
- name: PlatformIO Tests - name: PlatformIO Tests
run: platformio test -e native --junit-output-path reports/testreport.xml run: platformio test -e native --junit-output-path testreport.xml
- name: Test Report - name: Test Report
uses: dorny/test-reporter@v1.9.1 uses: dorny/test-reporter@v1.9.1
if: success() || failure() # run this step even if previous step failed if: success() || failure() # run this step even if previous step failed
with: with:
name: PlatformIO Tests name: PlatformIO Tests
path: reports/testreport.xml path: testreport.xml
reporter: java-junit reporter: java-junit