File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,8 @@ jobs:
181
181
- name : Check docstests
182
182
shell : ' script -q -e -c "bash --noprofile --norc -eo pipefail {0}"'
183
183
run : |
184
- pip install scipy-doctest hypothesis matplotlib scipy pytz pandas
184
+ pip install hypothesis matplotlib scipy pytz pandas
185
+ pip install git+https://github.com/scipy/scipy_doctest.git@strict-dtypes # Temp
185
186
spin check-docs -v
186
187
spin check-tutorials -v
187
188
Original file line number Diff line number Diff line change @@ -211,6 +211,9 @@ def warnings_errors_and_rng(test=None):
211
211
dt_config .rndm_markers .add ('#uninitialized' )
212
212
dt_config .rndm_markers .add ('# uninitialized' )
213
213
214
+ # make the checker pick on mismatched dtypes
215
+ dt_config .strict_check = True
216
+
214
217
import doctest
215
218
dt_config .optionflags = doctest .NORMALIZE_WHITESPACE | doctest .ELLIPSIS
216
219
You can’t perform that action at this time.
0 commit comments