From ec85f81c75ea247d8a66a7bc1e13f93be1175482 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 18 Oct 2018 14:50:14 -0500 Subject: [PATCH] CI: Quieter doctests --- ci/code_checks.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/code_checks.sh b/ci/code_checks.sh index 00f17d5c91537..dacd174613f4d 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -122,22 +122,22 @@ fi if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then MSG='Doctests frame.py' ; echo $MSG - pytest --doctest-modules -v pandas/core/frame.py \ + pytest -q --doctest-modules pandas/core/frame.py \ -k"-axes -combine -itertuples -join -nlargest -nsmallest -nunique -pivot_table -quantile -query -reindex -reindex_axis -replace -round -set_index -stack -to_stata" RET=$(($RET + $?)) ; echo $MSG "DONE" MSG='Doctests series.py' ; echo $MSG - pytest --doctest-modules -v pandas/core/series.py \ + pytest -q --doctest-modules pandas/core/series.py \ -k"-nonzero -reindex -searchsorted -to_dict" RET=$(($RET + $?)) ; echo $MSG "DONE" MSG='Doctests generic.py' ; echo $MSG - pytest --doctest-modules -v pandas/core/generic.py \ + pytest -q --doctest-modules pandas/core/generic.py \ -k"-_set_axis_name -_xs -describe -droplevel -groupby -interpolate -pct_change -pipe -reindex -reindex_axis -resample -to_json -transpose -values -xs" RET=$(($RET + $?)) ; echo $MSG "DONE" MSG='Doctests top-level reshaping functions' ; echo $MSG - pytest --doctest-modules -v \ + pytest -q --doctest-modules \ pandas/core/reshape/concat.py \ pandas/core/reshape/pivot.py \ pandas/core/reshape/reshape.py \