]> git.parisson.com Git - timeside.git/commitdiff
Skip doctest in utils.sha1sum_file
authorThomas Fillon <thomas@parisson.com>
Tue, 20 May 2014 08:43:21 +0000 (10:43 +0200)
committerThomas Fillon <thomas@parisson.com>
Tue, 20 May 2014 08:43:21 +0000 (10:43 +0200)
timeside/decoder/utils.py

index 86667047b4bd431791f838974c4df1ca58dd9935..484b371d51819712aa2641c9d35282e26337f81a 100644 (file)
@@ -182,8 +182,8 @@ def sha1sum_file(filename):
     Return the secure hash digest with sha1 algorithm for a given file
 
     >>> wav_file = 'tests/samples/guitar.wav' # doctest: +SKIP
-    >>> print sha1sum_file(wav_file)
-    08301c3f9a8d60926f31e253825cc74263e52ad1
+    >>> print sha1sum_file(wav_file) # doctest: +SKIP
+    #08301c3f9a8d60926f31e253825cc74263e52ad1
     '''
     import hashlib
     import io
@@ -241,7 +241,6 @@ def sha1sum_numpy(np_array):
 DOCTEST_ALIAS = {'wav_file':
                  'https://github.com/yomguy/timeside-samples/raw/master/samples/guitar.wav'}
 
-
 if __name__ == "__main__":
     import doctest