# HG changeset patch # User Jeff Hammel # Date 1330986414 28800 # Node ID c07dd14d584256602bea3fdfaa1f03b594b599f2 # Parent 18ef2d7c5b93f64cdb848b61dc1f552de43bb179 we always want doctest.ELLIPSIS. why the hell wouldnt we? diff -r 18ef2d7c5b93 -r c07dd14d5842 makeitso/python_package/tests/test.py --- a/makeitso/python_package/tests/test.py Wed Feb 29 16:17:40 2012 -0800 +++ b/makeitso/python_package/tests/test.py Mon Mar 05 14:26:54 2012 -0800 @@ -19,8 +19,9 @@ directory = os.path.dirname(os.path.abspath(__file__)) extraglobs = {'here': directory} doctest_args = dict(extraglobs=extraglobs, raise_on_error=raise_on_error) + doctest_args['optionsflags'] = doctest.ELLIPSIS if report_first: - doctest_args['optionflags'] = doctest.REPORT_ONLY_FIRST_FAILURE + doctest_args['optionflags'] |= doctest.REPORT_ONLY_FIRST_FAILURE # gather tests tests = [ test for test in os.listdir(directory)