From: Ned Deily Date: Wed, 27 Jun 2018 03:55:36 +0000 (-0400) Subject: bpo-29514: Make magic number test work for candidates (GH-7946) X-Git-Tag: v2.7.16rc1~225 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f79386f669c22199e3ce99cfba2e5945c73beb47;p=thirdparty%2FPython%2Fcpython.git bpo-29514: Make magic number test work for candidates (GH-7946) --- diff --git a/Lib/test/test_import_magic.py b/Lib/test/test_import_magic.py index 92f68b44f25c..57e350e3d828 100644 --- a/Lib/test/test_import_magic.py +++ b/Lib/test/test_import_magic.py @@ -11,7 +11,7 @@ class MagicNumberTests(unittest.TestCase): Test release compatibility issues relating to precompiled bytecode """ @unittest.skipUnless( - sys.version_info.releaselevel in ('final', 'release'), + sys.version_info.releaselevel in ('candidate', 'final'), 'only applies to candidate or final python release levels' ) def test_magic_number(self):