[Python-checkins] cpython: Issue #27181: Skip tests known to fail until a fix is found

victor.stinner python-checkins at python.org
Tue Aug 16 16:22:55 EDT 2016


https://hg.python.org/cpython/rev/54288b160243
changeset:   102709:54288b160243
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Aug 16 22:22:21 2016 +0200
summary:
  Issue #27181: Skip tests known to fail until a fix is found

files:
  Lib/test/test_statistics.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_statistics.py b/Lib/test/test_statistics.py
--- a/Lib/test/test_statistics.py
+++ b/Lib/test/test_statistics.py
@@ -1053,6 +1053,7 @@
         self.assertRaises(TypeError, statistics._product, [Decimal(1), 1.0])
 
 
+ at 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."""
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list