Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsmalladi committed Apr 25, 2024
1 parent 7b9449c commit ef2384a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
pytest --keep-workflow-wd --git-aware --tag ${{ matrix.test }}
--symlink tests/ --basetemp ~/temp
- name: Check files
run: ls -ltr /home/runner/temp/
if: ${{ failure() }}
run: ls -ltr /home/runner/temp/
- name: Check miniwdl log in case of failure.
if: ${{ failure() }}
# Get the last 1000 lines of the miniwdl log to catch the error.
Expand All @@ -47,5 +48,5 @@ jobs:
if: ${{ failure() }}
run: >-
bash -c '
for file in $(find/home/runner/temp/ -name stdout);
for file in $(find /home/runner/temp/ -name stdout);
do echo $file; cat $file; done'

0 comments on commit ef2384a

Please sign in to comment.