Skip show commands for doc tests

This commit is contained in:
Johannes Schönberger
2013-11-12 08:30:12 +01:00
parent b4c190e560
commit 3b1182cc2f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -248,7 +248,7 @@ def show():
>>> for i in range(4):
... io.imshow(np.random.random((50, 50)))
>>> io.show()
>>> io.show() # doctest: +SKIP
'''
return call_plugin('_app_show')
+1 -1
View File
@@ -73,7 +73,7 @@ class ImageViewer(QtGui.QMainWindow):
>>> from skimage import data
>>> image = data.coins()
>>> viewer = ImageViewer(image)
>>> # viewer.show()
>>> viewer.show() # doctest: +SKIP
"""