FIX: Skip viewer.show() commands which hang Travis

This commit is contained in:
JDWarner
2013-11-20 12:29:45 -06:00
parent d398b43051
commit beb395abbb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ class Plugin(QtGui.QDialog):
>>> image = data.coins()
>>> viewer = ImageViewer(image) # skip if not has_qt
>>> viewer += plugin # skip if not has_qt
>>> viewer.show() # skip if not has_qt
>>> viewer.show() # doctest: +SKIP
The plugin will automatically delegate parameters to `image_filter` based
on its parameter type, i.e., `ptype` (widgets for required arguments must
+1 -1
View File
@@ -80,7 +80,7 @@ class ImageViewer(QtGui.QMainWindow):
>>> from skimage import data
>>> image = data.coins()
>>> viewer = ImageViewer(image) # skip if not has_qt
>>> viewer.show() # skip if not has_qt
>>> viewer.show() # doctest: +SKIP
"""