Skip to content

Commit

Permalink
fix CI: Create missing output path
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-schulze-vireso committed Sep 13, 2024
1 parent fd3f217 commit 5e5e780
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,12 @@ jobs:
- name: Install in lib64
run: sudo ./install.sh /usr/ lib64
- name: Run from env
run: time bats test --print-output-on-failure --report-formatter junit --output test-results
shell: 'script -q -e -c "bash {0}"' # work around tty issues
env:
TERM: linux # fix tput for tty issue work around
run: |
mkdir test-results/
time bats test --print-output-on-failure --report-formatter junit --output test-results
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
Expand Down

0 comments on commit 5e5e780

Please sign in to comment.