X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2F__init__.py;h=0f6f15c665da78f61effd04e9159e5bf50b9ef56;hb=f5b5ef66e41ae0538eb32e4b8420c36a23b95361;hp=2188fa60d44401d1293a6e178ba4d7c1225ddda1;hpb=cb34e104961ce1da242017a0e5ebf60c3fe18a1d;p=dunshire.git diff --git a/test/__init__.py b/test/__init__.py index 2188fa6..0f6f15c 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -26,9 +26,9 @@ def build_suite(): suite.addTest(DocTestSuite(cones)) suite.addTest(DocTestSuite(errors, optionflags=ELLIPSIS)) suite.addTest(DocTestSuite(games, optionflags=ELLIPSIS)) - suite.addTest(DocTestSuite(matrices, optionflags=ELLIPSIS))) + suite.addTest(DocTestSuite(matrices, optionflags=ELLIPSIS)) suite.addTest(DocTestSuite(symmetric_linear_game_test)) - suite.addTest(DocTestSuite(randomgen)) + suite.addTest(DocTestSuite(randomgen, optionflags=ELLIPSIS)) slg_tests = TestLoader().loadTestsFromModule(symmetric_linear_game_test) suite.addTest(slg_tests) mat_tests = TestLoader().loadTestsFromModule(matrices_test)