diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-09-13 22:17:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-09-13 22:17:55 (GMT) |
commit | 860839cc8e0a4a0890418f77c984955697f96828 (patch) | |
tree | c625f3662a2dfa45e3b4d31b3ebc4dc339dbbc0d /Lib | |
parent | 42f7e0d8b0ca940a809a786f25d967dcce4d71b6 (diff) | |
download | cpython-860839cc8e0a4a0890418f77c984955697f96828.zip cpython-860839cc8e0a4a0890418f77c984955697f96828.tar.gz cpython-860839cc8e0a4a0890418f77c984955697f96828.tar.bz2 |
[2.7] bpo-30442: Skips refcount test in test_xml_etree under coverage (GH-1767) (#3549)
(cherry picked from commit 1de4705d00168afa8c5b6741af02e21fc609af58)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_xml_etree.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_xml_etree.py b/Lib/test/test_xml_etree.py index 60b26ea..55d7010 100644 --- a/Lib/test/test_xml_etree.py +++ b/Lib/test/test_xml_etree.py @@ -1338,6 +1338,7 @@ class BugsTest(unittest.TestCase): self.assertEqual(t.find('.//paragraph').text, u'A new cultivar of Begonia plant named \u2018BCT9801BEG\u2019.') + @unittest.skipIf(sys.gettrace(), "Skips under coverage.") def test_bug_xmltoolkit63(self): # Check reference leak. def xmltoolkit63(): |