diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-08-16 20:22:21 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-08-16 20:22:21 (GMT) |
commit | e3f1e8a9d3e8892730d28fa24cdc9359e07d63f6 (patch) | |
tree | c9ea221574b90146938a3b53213fa55156eb8eb4 /Lib/test/test_statistics.py | |
parent | fd27f62a747603137d2577d7e36a795dbddb36b2 (diff) | |
download | cpython-e3f1e8a9d3e8892730d28fa24cdc9359e07d63f6.zip cpython-e3f1e8a9d3e8892730d28fa24cdc9359e07d63f6.tar.gz cpython-e3f1e8a9d3e8892730d28fa24cdc9359e07d63f6.tar.bz2 |
Issue #27181: Skip tests known to fail until a fix is found
Diffstat (limited to 'Lib/test/test_statistics.py')
-rw-r--r-- | 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 index 8b0c01f..dff0cd4 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.""" |