Skip to content

Commit 2e9a192

Browse files
committed
workaround #7133
Signed-off-by: Wenqi Li <[email protected]>
1 parent 6463a4a commit 2e9a192

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,5 +234,5 @@ jobs:
234234
make clean
235235
make html 2>&1 | tee tmp_log
236236
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
237+
if [[ $(grep -c "WARNING:" tmp_log) != 0 ]]; then echo "found warnings"; grep "WARNING:" tmp_log | grep -Ev "pip.$"; exit 1; fi # monai#7133
238238
shell: bash

0 commit comments

Comments
 (0)