We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6463a4a commit 2e9a192Copy full SHA for 2e9a192
.github/workflows/pythonapp.yml
@@ -234,5 +234,5 @@ jobs:
234
make clean
235
make html 2>&1 | tee tmp_log
236
if [[ $(grep -c "ERROR:" tmp_log) != 0 ]]; then echo "found errors"; grep "ERROR:" tmp_log; exit 1; fi
237
- if [[ $(grep -c "WARNING:" tmp_log) != 0 ]]; then echo "found warnings"; grep "WARNING:" tmp_log; exit 1; fi
+ if [[ $(grep -c "WARNING:" tmp_log) != 0 ]]; then echo "found warnings"; grep "WARNING:" tmp_log | grep -Ev "pip.$"; exit 1; fi # monai#7133
238
shell: bash
0 commit comments