Skip to content
Prev Previous commit
Next Next commit
updated code_check.sh to take into account PR10 type errors
  • Loading branch information
Víctor Moron authored and Víctor Moron committed Feb 3, 2019
commit 6d6e0544255b3a8f4806d7044ec34f2ed40405f7
4 changes: 2 additions & 2 deletions ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ fi
### DOCSTRINGS ###
if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then

MSG='Validate docstrings (GL06, GL07, GL09, SS04, PR03, PR05, EX04)' ; echo $MSG
$BASE_DIR/scripts/validate_docstrings.py --format=azure --errors=GL06,GL07,GL09,SS04,PR03,PR05,EX04
MSG='Validate docstrings (GL06, GL07, GL09, SS04, PR03, PR05, PR10, EX04)' ; echo $MSG
$BASE_DIR/scripts/validate_docstrings.py --format=azure --errors=GL06,GL07,GL09,SS04,PR03,PR05,PR10,EX04
RET=$(($RET + $?)) ; echo $MSG "DONE"

fi
Expand Down