mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-18 16:37:27 -08:00
Fails tests on python3.7, so not adding that. Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
22 lines
807 B
Diff
22 lines
807 B
Diff
diff --git a/apitools/base/protorpclite/descriptor_test.py b/apitools/base/protorpclite/descriptor_test.py
|
|
index fc27ec4..d518e24 100644
|
|
--- a/apitools/base/protorpclite/descriptor_test.py
|
|
+++ b/apitools/base/protorpclite/descriptor_test.py
|
|
@@ -16,6 +16,7 @@
|
|
#
|
|
|
|
"""Tests for apitools.base.protorpclite.descriptor."""
|
|
+import sys
|
|
import platform
|
|
import types
|
|
|
|
@@ -78,7 +79,7 @@ class DescribeEnumTest(test_util.TestCase):
|
|
described.check_initialized()
|
|
self.assertEquals(expected, described)
|
|
|
|
- @unittest2.skipIf('PyPy' in platform.python_implementation(),
|
|
+ @unittest2.skipIf('PyPy' in platform.python_implementation() or sys.hexversion >= 0x03060000,
|
|
'todo: reenable this')
|
|
def testEnumWithItems(self):
|
|
class EnumWithItems(messages.Enum):
|