From: Victor Stinner Date: Tue, 16 Aug 2016 20:22:21 +0000 (+0200) Subject: Issue #27181: Skip tests known to fail until a fix is found X-Git-Tag: v3.6.0b1~698 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3f1e8a9d3e8892730d28fa24cdc9359e07d63f6;p=python Issue #27181: Skip tests known to fail until a fix is found --- diff --git a/Lib/test/test_statistics.py b/Lib/test/test_statistics.py index 8b0c01fd85..dff0cd4476 100644 --- a/Lib/test/test_statistics.py +++ b/Lib/test/test_statistics.py @@ -1053,6 +1053,7 @@ class Test_Product(NumericTestCase): self.assertRaises(TypeError, statistics._product, [Decimal(1), 1.0]) +@unittest.skipIf(True, "FIXME: tests known to fail, see issue #27181") class Test_Nth_Root(NumericTestCase): """Test the functionality of the private _nth_root function."""