summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-02-28 13:05:20 +0200
committerGitHub <noreply@github.com>2020-02-28 13:05:20 +0200
commit7eaac94d183888639422c7b55471613f1d5bce18 (patch)
tree136f9c3672d7ce69b53ee45b18ed501c2e4a0af7 /tools
parente6c2765d428bdce57b6d5bf0554d177ab0b45bf5 (diff)
parent70f97a5040e20642b68e45d30e030a89ac89e665 (diff)
downloadnumpy-7eaac94d183888639422c7b55471613f1d5bce18.tar.gz
Merge pull request #12646 from shoyer/refguide-check-exceptions
TST: check exception details in refguide_check.py
Diffstat (limited to 'tools')
-rw-r--r--tools/refguide_check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/refguide_check.py b/tools/refguide_check.py
index ab1ba6379..cbde44092 100644
--- a/tools/refguide_check.py
+++ b/tools/refguide_check.py
@@ -781,7 +781,7 @@ def _run_doctests(tests, full_name, verbose, doctest_warnings):
tuple(bool, list)
Tuple of (success, output)
"""
- flags = NORMALIZE_WHITESPACE | ELLIPSIS | IGNORE_EXCEPTION_DETAIL
+ flags = NORMALIZE_WHITESPACE | ELLIPSIS
runner = DTRunner(full_name, checker=Checker(), optionflags=flags,
verbose=verbose)