diff --git a/test/run_test.py b/test/run_test.py index 72622ab4d7c6a..9ea0aca97fd4e 100755 --- a/test/run_test.py +++ b/test/run_test.py @@ -678,7 +678,6 @@ def main(): # return code -N, where N is the signal number. signal_name = SIGNALS_TO_NAMES_DICT[-return_code] message += ' Received signal: {}'.format(signal_name) - #print(message, file=sys.stderr) raise RuntimeError(message) if options.coverage: shell(['coverage', 'combine']) diff --git a/test/test_distributions.py b/test/test_distributions.py index 159f3706a71d6..e1096fae2124a 100644 --- a/test/test_distributions.py +++ b/test/test_distributions.py @@ -1398,7 +1398,6 @@ def test_uniform(self): high.grad.zero_() @unittest.skipIf(not TEST_NUMPY, "NumPy not found") - def test_vonmises_sample(self): for loc in [0.0, math.pi / 2.0]: for concentration in [0.03, 0.3, 1.0, 10.0, 100.0]: