You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/wehjit/files/wehjit-0.2.2-SkipTest.patch

24 lines
648 B

diff -ur wehjit-0.2.2.orig/wehjit/collection.py wehjit-0.2.2/wehjit/collection.py
--- wehjit/collection.py 2010-02-11 16:26:14.000000000 +0800
+++ wehjit/collection.py 2012-11-08 14:24:40.326482713 +0800
@@ -22,6 +22,11 @@
Collect widget plugins together in a `Collection`.
"""
+import sys
+if sys.version_info[:2] == (2, 7):
+ import unittest
+else:
+ import unittest2 as unittest
import inspect
import os
from os import path
@@ -130,6 +135,7 @@
"""
return name in self.__plugins
+ @unittest.skip("Plugin not in gentoo")
def __getitem__(self, name):
"""
Return the plugin named ``name``.