Skip to content

Commit

Permalink
workaround #7133
Browse files Browse the repository at this point in the history
Signed-off-by: Wenqi Li <[email protected]>
  • Loading branch information
wyli committed Oct 16, 2023
1 parent 6463a4a commit 00eca81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,5 +234,5 @@ jobs:
make clean
make html 2>&1 | tee tmp_log
if [[ $(grep -c "ERROR:" tmp_log) != 0 ]]; then echo "found errors"; grep "ERROR:" tmp_log; exit 1; fi
if [[ $(grep -c "WARNING:" tmp_log) != 0 ]]; then echo "found warnings"; grep "WARNING:" tmp_log; exit 1; fi
if grep -q "WARNING:" tmp_log && grep -qEv " pip" tmp_log; then echo "found warnings"; grep "WARNING:" tmp_log; exit 1; fi # monai#7133
shell: bash

0 comments on commit 00eca81

Please sign in to comment.