Advertisement
DanPacu

Untitled

Dec 31st, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.57 KB | None | 0 0
  1. ./start-mycroft.sh all
  2. remote: Enumerating objects: 12, done.
  3. remote: Counting objects: 100% (12/12), done.
  4. remote: Compressing objects: 100% (6/6), done.
  5. remote: Total 12 (delta 6), reused 6 (delta 6), pack-reused 0
  6. Desempaquetando objetos: 100% (12/12), listo.
  7. Desde https://github.com/MycroftAI/mycroft-core
  8. 0050bde937..f1d7141bf2 dev -> origin/dev
  9. Ya está actualizado.
  10. Starting all mycroft-core services
  11. Initializing...
  12. Starting background service bus
  13. CAUTION: The Mycroft bus is an open websocket with no built-in security
  14. measures. You are responsible for protecting the local port
  15. 8181 with a firewall as appropriate.
  16. Starting background service skills
  17. Starting background service audio
  18. Starting background service voice
  19. Starting background service enclosure
  20. pi@raspberrypi:~/mycroft-core $ ./start-mycroft.sh unittest
  21. Ya está actualizado.
  22. ============================================================= test session starts =============================================================
  23. platform linux -- Python 3.7.3, pytest-5.2.4, py-1.10.0, pluggy-0.13.1
  24. rootdir: /home/pi/mycroft-core, inifile: pytest.ini
  25. plugins: cov-2.8.1
  26. collected 363 items
  27.  
  28. test/unittests/api/test_api.py ...................... [ 6%]
  29. test/unittests/audio/test_service.py ...... [ 7%]
  30. test/unittests/audio/test_simple_backend.py ..... [ 9%]
  31. test/unittests/audio/test_speech.py ....... [ 11%]
  32. test/unittests/audio/test_utils.py ... [ 11%]
  33. test/unittests/audio/test_vlc_backend.py ... [ 12%]
  34. test/unittests/client/test_audio_consumer.py .ss.ss. [ 14%]
  35. test/unittests/client/test_data_structures.py ........ [ 16%]
  36. test/unittests/client/test_dynamic_energy_test.py . [ 17%]
  37. test/unittests/client/test_hotword_factory.py ... [ 17%]
  38. test/unittests/client/test_local_recognizer.py .... [ 19%]
  39. test/unittests/client/test_noise_tracker.py .... [ 20%]
  40. test/unittests/configuration/test_configuration.py .... [ 21%]
  41. test/unittests/dialog/test_dialog.py ....... [ 23%]
  42. test/unittests/lock/test_lock.py .... [ 24%]
  43. test/unittests/messagebus/client/test_client.py .... [ 25%]
  44. test/unittests/skills/test_audioservice.py ................... [ 30%]
  45. test/unittests/skills/test_common_play_skill.py ...... [ 32%]
  46. test/unittests/skills/test_common_query_skill.py ...... [ 33%]
  47. test/unittests/skills/test_context.py ... [ 34%]
  48. test/unittests/skills/test_event_container.py .... [ 35%]
  49. test/unittests/skills/test_event_scheduler.py ..... [ 37%]
  50. test/unittests/skills/test_fallback_skill.py .. [ 37%]
  51. test/unittests/skills/test_intent_service.py ........ [ 39%]
  52. test/unittests/skills/test_intent_service_interface.py ... [ 40%]
  53. test/unittests/skills/test_mycroft_skill.py .................................... [ 50%]
  54. test/unittests/skills/test_settings.py ............. [ 54%]
  55. test/unittests/skills/test_skill_loader.py ....... [ 56%]
  56. test/unittests/skills/test_skill_manager.py .......................... [ 63%]
  57. test/unittests/skills/test_skill_updater.py ................ [ 67%]
  58. test/unittests/stt/test_stt.py .......... [ 70%]
  59. test/unittests/tts/test_espeak_tts.py . [ 70%]
  60. test/unittests/tts/test_google_tts.py ... [ 71%]
  61. test/unittests/tts/test_mimic2_tts.py ..... [ 73%]
  62. test/unittests/tts/test_mimic_tts.py .... [ 74%]
  63. test/unittests/tts/test_tts.py ........ [ 76%]
  64. test/unittests/util/test_audio_utils.py ............ [ 79%]
  65. test/unittests/util/test_download.py ....... [ 81%]
  66. test/unittests/util/test_file_utils.py ............ [ 84%]
  67. test/unittests/util/test_format.py ................. [ 89%]
  68. test/unittests/util/test_json_helper.py . [ 89%]
  69. test/unittests/util/test_log.py . [ 90%]
  70. test/unittests/util/test_parse.py ................ [ 94%]
  71. test/unittests/util/test_platform.py . [ 94%]
  72. test/unittests/util/test_process_utils.py ....... [ 96%]
  73. test/unittests/util/test_signal.py .. [ 97%]
  74. test/unittests/util/test_string_utils.py . [ 97%]
  75. test/unittests/util/test_time.py ...... [ 99%]
  76. test/unittests/version/test_version.py ... [100%]
  77.  
  78. ============================================================== warnings summary ===============================================================
  79. test/unittests/client/test_audio_consumer.py::AudioConsumerTest::test_ignore_wakeword_when_sleeping
  80. /home/pi/mycroft-core/.venv/lib/python3.7/site-packages/pocketsphinx/pocketsphinx.py:29: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
  81. import imp
  82.  
  83. -- Docs: https://docs.pytest.org/en/latest/warnings.html
  84.  
  85. ----------- coverage: platform linux, python 3.7.3-final-0 -----------
  86. Name Stmts Miss Cover
  87. ---------------------------------------------------------------------
  88. mycroft/__init__.py 8 0 100%
  89. mycroft/api/__init__.py 234 41 82%
  90. mycroft/audio/__init__.py 1 0 100%
  91. mycroft/audio/__main__.py 35 35 0%
  92. mycroft/audio/audioservice.py 247 48 81%
  93. mycroft/audio/services/__init__.py 43 18 58%
  94. mycroft/audio/services/chromecast/__init__.py 96 96 0%
  95. mycroft/audio/services/mopidy/__init__.py 74 74 0%
  96. mycroft/audio/services/mopidy/mopidypost.py 154 154 0%
  97. mycroft/audio/services/mplayer/__init__.py 75 75 0%
  98. mycroft/audio/services/simple/__init__.py 146 21 86%
  99. mycroft/audio/services/vlc/__init__.py 95 30 68%
  100. mycroft/audio/speech.py 97 8 92%
  101. mycroft/audio/utils.py 15 1 93%
  102. mycroft/client/__init__.py 0 0 100%
  103. mycroft/client/enclosure/__init__.py 0 0 100%
  104. mycroft/client/enclosure/__main__.py 40 40 0%
  105. mycroft/client/enclosure/base.py 249 249 0%
  106. mycroft/client/enclosure/generic/__init__.py 45 45 0%
  107. mycroft/client/enclosure/mark1/__init__.py 216 216 0%
  108. mycroft/client/enclosure/mark1/arduino.py 21 21 0%
  109. mycroft/client/enclosure/mark1/eyes.py 84 84 0%
  110. mycroft/client/enclosure/mark1/mouth.py 173 173 0%
  111. mycroft/client/enclosure/mark2/__init__.py 4 4 0%
  112. mycroft/client/speech/__init__.py 0 0 100%
  113. mycroft/client/speech/__main__.py 125 125 0%
  114. mycroft/client/speech/data_structures.py 38 0 100%
  115. mycroft/client/speech/hotword_factory.py 273 105 62%
  116. mycroft/client/speech/listener.py 280 148 47%
  117. mycroft/client/speech/mic.py 345 210 39%
  118. mycroft/client/speech/recognizer/__init__.py 0 0 100%
  119. mycroft/client/speech/word_extractor.py 39 39 0%
  120. mycroft/client/text/__init__.py 0 0 100%
  121. mycroft/client/text/__main__.py 37 37 0%
  122. mycroft/client/text/gui_server.py 99 99 0%
  123. mycroft/client/text/text_client.py 831 831 0%
  124. mycroft/configuration/__init__.py 2 0 100%
  125. mycroft/configuration/config.py 128 40 69%
  126. mycroft/configuration/locations.py 13 1 92%
  127. mycroft/dialog/__init__.py 2 0 100%
  128. mycroft/dialog/dialog.py 65 0 100%
  129. mycroft/enclosure/__init__.py 2 0 100%
  130. mycroft/enclosure/api.py 96 56 42%
  131. mycroft/enclosure/display_manager.py 90 74 18%
  132. mycroft/enclosure/gui.py 111 70 37%
  133. mycroft/filesystem/__init__.py 17 3 82%
  134. mycroft/identity/__init__.py 70 27 61%
  135. mycroft/lock/__init__.py 50 3 94%
  136. mycroft/messagebus/__init__.py 4 0 100%
  137. mycroft/messagebus/client/__init__.py 1 0 100%
  138. mycroft/messagebus/client/client.py 136 80 41%
  139. mycroft/messagebus/load_config.py 19 6 68%
  140. mycroft/messagebus/message.py 55 21 62%
  141. mycroft/messagebus/send.py 27 22 19%
  142. mycroft/messagebus/send_func.py 14 8 43%
  143. mycroft/messagebus/service/__init__.py 0 0 100%
  144. mycroft/messagebus/service/__main__.py 33 33 0%
  145. mycroft/messagebus/service/event_handler.py 40 23 42%
  146. mycroft/metrics/__init__.py 114 40 65%
  147. mycroft/session/__init__.py 28 2 93%
  148. mycroft/skills/__init__.py 7 0 100%
  149. mycroft/skills/__main__.py 149 149 0%
  150. mycroft/skills/audioservice.py 60 2 97%
  151. mycroft/skills/common_iot_skill.py 167 67 60%
  152. mycroft/skills/common_play_skill.py 103 17 83%
  153. mycroft/skills/common_query_skill.py 58 8 86%
  154. mycroft/skills/context.py 17 0 100%
  155. mycroft/skills/core.py 8 0 100%
  156. mycroft/skills/event_scheduler.py 195 55 72%
  157. mycroft/skills/fallback_skill.py 75 27 64%
  158. mycroft/skills/intent_service.py 295 176 40%
  159. mycroft/skills/intent_service_interface.py 187 122 35%
  160. mycroft/skills/msm_wrapper.py 33 16 52%
  161. mycroft/skills/mycroft_skill/__init__.py 3 0 100%
  162. mycroft/skills/mycroft_skill/decorators.py 21 0 100%
  163. mycroft/skills/mycroft_skill/event_container.py 84 14 83%
  164. mycroft/skills/mycroft_skill/mycroft_skill.py 535 233 56%
  165. mycroft/skills/padatious_service.py 135 106 21%
  166. mycroft/skills/settings.py 184 23 88%
  167. mycroft/skills/skill_data.py 93 11 88%
  168. mycroft/skills/skill_loader.py 182 64 65%
  169. mycroft/skills/skill_manager.py 287 66 77%
  170. mycroft/skills/skill_updater.py 151 23 85%
  171. mycroft/stt/__init__.py 306 136 56%
  172. mycroft/tts/__init__.py 2 0 100%
  173. mycroft/tts/bing_tts.py 31 20 35%
  174. mycroft/tts/cache_handler.py 87 64 26%
  175. mycroft/tts/dummy_tts.py 18 7 61%
  176. mycroft/tts/espeak_tts.py 20 6 70%
  177. mycroft/tts/fa_tts.py 28 16 43%
  178. mycroft/tts/festival_tts.py 30 20 33%
  179. mycroft/tts/google_tts.py 43 6 86%
  180. mycroft/tts/ibm_tts.py 39 26 33%
  181. mycroft/tts/mary_tts.py 27 15 44%
  182. mycroft/tts/mimic2_tts.py 127 25 80%
  183. mycroft/tts/mimic_tts.py 96 16 83%
  184. mycroft/tts/polly_tts.py 47 35 26%
  185. mycroft/tts/remote_tts.py 50 31 38%
  186. mycroft/tts/responsive_voice_tts.py 32 22 31%
  187. mycroft/tts/spdsay_tts.py 21 11 48%
  188. mycroft/tts/tts.py 272 55 80%
  189. mycroft/tts/yandex_tts.py 52 38 27%
  190. mycroft/util/__init__.py 14 0 100%
  191. mycroft/util/audio_test.py 74 74 0%
  192. mycroft/util/audio_utils.py 75 14 81%
  193. mycroft/util/combo_lock.py 32 9 72%
  194. mycroft/util/download.py 58 3 95%
  195. mycroft/util/file_utils.py 85 5 94%
  196. mycroft/util/format.py 163 0 100%
  197. mycroft/util/json_helper.py 20 0 100%
  198. mycroft/util/lang.py 2 0 100%
  199. mycroft/util/log.py 59 5 92%
  200. mycroft/util/network_utils.py 39 18 54%
  201. mycroft/util/parse.py 38 3 92%
  202. mycroft/util/platform.py 4 0 100%
  203. mycroft/util/process_utils.py 60 30 50%
  204. mycroft/util/signal.py 31 5 84%
  205. mycroft/util/string_utils.py 6 0 100%
  206. mycroft/util/time.py 32 2 94%
  207. mycroft/version/__init__.py 24 2 92%
  208. ---------------------------------------------------------------------
  209. TOTAL 10509 5434 48%
  210.  
  211. =========================================== 359 passed, 4 skipped, 1 warnings in 138.32s (0:02:18) ============================================
  212. pi@raspberrypi:~/mycroft-core $
  213.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement