]> git.parisson.com Git - timeside.git/commitdiff
doctest bugfix again for systems without any display
authorGuillaume Pellerin <yomguy@parisson.com>
Mon, 2 Dec 2013 22:00:57 +0000 (23:00 +0100)
committerGuillaume Pellerin <yomguy@parisson.com>
Mon, 2 Dec 2013 22:00:57 +0000 (23:00 +0100)
timeside/analyzer/core.py

index c1bf83410d5eb3853c89c326db300cb43da19b5a..0d497362dbfc0bc80bea9b87d654189bc48b4d03 100644 (file)
@@ -793,8 +793,8 @@ class AnalyzerResultContainer(dict):
     >>> d = timeside.decoder.FileDecoder(wavFile, start=1)
 
     >>> a = timeside.analyzer.Analyzer()
-    >>> (d|a).run() #doctest: +ELLIPSIS
-    >>> a.new_result() #doctest: +ELLIPSIS
+    >>> (d|a).run() #doctest: +SKIP
+    >>> a.new_result() #doctest: +SKIP
     FrameValueResult(id_metadata=IdMetadata(id='analyzer', name='Generic analyzer', unit='', description='', date='...', version='...', author='TimeSide', uuid='...'), data_object=DataObject(value=array([], dtype=float64)), audio_metadata=AudioMetadata(uri='http://...', start=1.0, duration=7..., is_segment=True, channels=None, channelsManagement=''), frame_metadata=FrameMetadata(samplerate=44100, blocksize=8192, stepsize=8192), parameters={})
     >>> resContainer = timeside.analyzer.core.AnalyzerResultContainer()