[Python-checkins] bpo-36876: Skip test_check_c_globals for now. (gh-16017)

Eric Snow webhook-mailer at python.org
Thu Sep 12 05:51:04 EDT 2019


https://github.com/python/cpython/commit/64535fc6c0712caef0bc46be30e661f7ccf8280e
commit: 64535fc6c0712caef0bc46be30e661f7ccf8280e
branch: master
author: Eric Snow <ericsnowcurrently at gmail.com>
committer: GitHub <noreply at github.com>
date: 2019-09-12T10:51:00+01:00
summary:

bpo-36876: Skip test_check_c_globals for now. (gh-16017)

files:
M Lib/test/test_check_c_globals.py

diff --git a/Lib/test/test_check_c_globals.py b/Lib/test/test_check_c_globals.py
index 009560e8d98d..a3925f0ca887 100644
--- a/Lib/test/test_check_c_globals.py
+++ b/Lib/test/test_check_c_globals.py
@@ -9,7 +9,9 @@
 class ActualChecks(unittest.TestCase):
 
     # XXX Also run the check in "make check".
-    @unittest.expectedFailure
+    #@unittest.expectedFailure
+    # Failing on one of the buildbots (see https://bugs.python.org/issue36876).
+    @unittest.skip('activate this once all the globals have been resolved')
     def test_check_c_globals(self):
         try:
             main('check', {})



More information about the Python-checkins mailing list