diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-02-28 13:05:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-28 13:05:20 +0200 |
commit | 7eaac94d183888639422c7b55471613f1d5bce18 (patch) | |
tree | 136f9c3672d7ce69b53ee45b18ed501c2e4a0af7 /tools/refguide_check.py | |
parent | e6c2765d428bdce57b6d5bf0554d177ab0b45bf5 (diff) | |
parent | 70f97a5040e20642b68e45d30e030a89ac89e665 (diff) | |
download | numpy-7eaac94d183888639422c7b55471613f1d5bce18.tar.gz |
Merge pull request #12646 from shoyer/refguide-check-exceptions
TST: check exception details in refguide_check.py
Diffstat (limited to 'tools/refguide_check.py')
-rw-r--r-- | tools/refguide_check.py | 2 |
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) |