Advertisement
Guest User

Untitled

a guest
Jun 6th, 2018
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 15.76 KB | None | 0 0
  1. (coala) manankalra@manankalra:~/stuff/coala/coala-bears$ pytest
  2. ================================================================ test session starts =================================================================
  3. platform linux -- Python 3.6.5, pytest-3.6.1, py-1.5.3, pluggy-0.6.0
  4. rootdir: /home/manankalra/stuff/coala/coala-bears, inifile: setup.cfg
  5. collected 658 items / 26 errors                                                                                                                      
  6.  
  7. ======================================================================= ERRORS =======================================================================
  8. _______________________________ ERROR collecting tests/c_languages/codeclone_detection/ClangCloneDetectionBearTest.py ________________________________
  9. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/c_languages/codeclone_detection/ClangCloneDetectionBearTest.py'.
  10. Hint: make sure your test modules/packages have valid Python names.
  11. Traceback:
  12. tests/c_languages/codeclone_detection/ClangCloneDetectionBearTest.py:5: in <module>
  13.     from bears.c_languages.codeclone_detection.ClangCloneDetectionBear import (
  14. bears/c_languages/codeclone_detection/ClangCloneDetectionBear.py:2: in <module>
  15.     from bears.c_languages.codeclone_detection.ClangFunctionDifferenceBear import (
  16. bears/c_languages/codeclone_detection/ClangFunctionDifferenceBear.py:9: in <module>
  17.     from bears.c_languages.codeclone_detection.CloneDetectionRoutines import (
  18. bears/c_languages/codeclone_detection/CloneDetectionRoutines.py:5: in <module>
  19.     from munkres import Munkres
  20. E   ModuleNotFoundError: No module named 'munkres'
  21. ________________________________ ERROR collecting tests/c_languages/codeclone_detection/CloneDetectionRoutinesTest.py ________________________________
  22. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/c_languages/codeclone_detection/CloneDetectionRoutinesTest.py'.
  23. Hint: make sure your test modules/packages have valid Python names.
  24. Traceback:
  25. tests/c_languages/codeclone_detection/CloneDetectionRoutinesTest.py:3: in <module>
  26.     from bears.c_languages.codeclone_detection.CloneDetectionRoutines import (
  27. bears/c_languages/codeclone_detection/CloneDetectionRoutines.py:5: in <module>
  28.     from munkres import Munkres
  29. E   ModuleNotFoundError: No module named 'munkres'
  30. __________________________________________________ ERROR collecting tests/general/HTTPSBearTest.py ___________________________________________________
  31. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/general/HTTPSBearTest.py'.
  32. Hint: make sure your test modules/packages have valid Python names.
  33. Traceback:
  34. tests/general/HTTPSBearTest.py:4: in <module>
  35.     import requests_mock
  36. E   ModuleNotFoundError: No module named 'requests_mock'
  37. _______________________________________________ ERROR collecting tests/general/InvalidLinkBearTest.py ________________________________________________
  38. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/general/InvalidLinkBearTest.py'.
  39. Hint: make sure your test modules/packages have valid Python names.
  40. Traceback:
  41. tests/general/InvalidLinkBearTest.py:5: in <module>
  42.     import requests_mock
  43. E   ModuleNotFoundError: No module named 'requests_mock'
  44. _________________________________________________ ERROR collecting tests/general/MementoBearTest.py __________________________________________________
  45. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/general/MementoBearTest.py'.
  46. Hint: make sure your test modules/packages have valid Python names.
  47. Traceback:
  48. tests/general/MementoBearTest.py:5: in <module>
  49.     import requests_mock
  50. E   ModuleNotFoundError: No module named 'requests_mock'
  51. ___________________________________________________ ERROR collecting tests/general/URLBearTest.py ____________________________________________________
  52. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/general/URLBearTest.py'.
  53. Hint: make sure your test modules/packages have valid Python names.
  54. Traceback:
  55. tests/general/URLBearTest.py:2: in <module>
  56.     import requests_mock
  57. E   ModuleNotFoundError: No module named 'requests_mock'
  58. _________________________________________________ ERROR collecting tests/general/URLHeadBearTest.py __________________________________________________
  59. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/general/URLHeadBearTest.py'.
  60. Hint: make sure your test modules/packages have valid Python names.
  61. Traceback:
  62. tests/general/URLHeadBearTest.py:3: in <module>
  63.     import requests_mock
  64. E   ModuleNotFoundError: No module named 'requests_mock'
  65. __________________________________________________ ERROR collecting tests/haml/HAMLLintBearTest.py ___________________________________________________
  66. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/haml/HAMLLintBearTest.py'.
  67. Hint: make sure your test modules/packages have valid Python names.
  68. Traceback:
  69. tests/haml/HAMLLintBearTest.py:8: in <module>
  70.     from bears.haml.HAMLLintBear import HAMLLintBear
  71. bears/haml/HAMLLintBear.py:1: in <module>
  72.     import yaml
  73. E   ModuleNotFoundError: No module named 'yaml'
  74. __________________________________________ ERROR collecting tests/natural_language/LanguageToolBearTest.py ___________________________________________
  75. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/natural_language/LanguageToolBearTest.py'.
  76. Hint: make sure your test modules/packages have valid Python names.
  77. Traceback:
  78. tests/natural_language/LanguageToolBearTest.py:5: in <module>
  79.     from bears.natural_language.LanguageToolBear import LanguageToolBear
  80. bears/natural_language/LanguageToolBear.py:4: in <module>
  81.     from guess_language import guess_language
  82. E   ModuleNotFoundError: No module named 'guess_language'
  83. ___________________________________________________ ERROR collecting tests/python/PEP8BearTest.py ____________________________________________________
  84. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/PEP8BearTest.py'.
  85. Hint: make sure your test modules/packages have valid Python names.
  86. Traceback:
  87. tests/python/PEP8BearTest.py:3: in <module>
  88.     from bears.python.PEP8Bear import PEP8Bear
  89. bears/python/PEP8Bear.py:1: in <module>
  90.     import autopep8
  91. E   ModuleNotFoundError: No module named 'autopep8'
  92. _______________________________________________ ERROR collecting tests/python/PEP8NotebookBearTest.py ________________________________________________
  93. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/PEP8NotebookBearTest.py'.
  94. Hint: make sure your test modules/packages have valid Python names.
  95. Traceback:
  96. tests/python/PEP8NotebookBearTest.py:2: in <module>
  97.     from bears.python.PEP8NotebookBear import PEP8NotebookBear
  98. bears/python/PEP8NotebookBear.py:1: in <module>
  99.     import autopep8
  100. E   ModuleNotFoundError: No module named 'autopep8'
  101. ______________________________________________ ERROR collecting tests/python/PyCommentedCodeBearTest.py ______________________________________________
  102. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/PyCommentedCodeBearTest.py'.
  103. Hint: make sure your test modules/packages have valid Python names.
  104. Traceback:
  105. tests/python/PyCommentedCodeBearTest.py:3: in <module>
  106.     from bears.python.PyCommentedCodeBear import PyCommentedCodeBear
  107. bears/python/PyCommentedCodeBear.py:1: in <module>
  108.     import eradicate
  109. E   ModuleNotFoundError: No module named 'eradicate'
  110. _______________________________________________ ERROR collecting tests/python/PyImportSortBearTest.py ________________________________________________
  111. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/PyImportSortBearTest.py'.
  112. Hint: make sure your test modules/packages have valid Python names.
  113. Traceback:
  114. tests/python/PyImportSortBearTest.py:1: in <module>
  115.     from bears.python.PyImportSortBear import PyImportSortBear
  116. bears/python/PyImportSortBear.py:1: in <module>
  117.     from isort import SortImports
  118. E   ModuleNotFoundError: No module named 'isort'
  119. _______________________________________________ ERROR collecting tests/python/PyUnusedCodeBearTest.py ________________________________________________
  120. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/PyUnusedCodeBearTest.py'.
  121. Hint: make sure your test modules/packages have valid Python names.
  122. Traceback:
  123. tests/python/PyUnusedCodeBearTest.py:1: in <module>
  124.     from bears.python.PyUnusedCodeBear import PyUnusedCodeBear
  125. bears/python/PyUnusedCodeBear.py:1: in <module>
  126.     import autoflake
  127. E   ModuleNotFoundError: No module named 'autoflake'
  128. __________________________________________________ ERROR collecting tests/python/PyromaBearTest.py ___________________________________________________
  129. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/PyromaBearTest.py'.
  130. Hint: make sure your test modules/packages have valid Python names.
  131. Traceback:
  132. tests/python/PyromaBearTest.py:6: in <module>
  133.     from bears.python.PyromaBear import PyromaBear
  134. bears/python/PyromaBear.py:2: in <module>
  135.     import pyroma
  136. E   ModuleNotFoundError: No module named 'pyroma'
  137. ___________________________________________________ ERROR collecting tests/python/RadonBearTest.py ___________________________________________________
  138. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/RadonBearTest.py'.
  139. Hint: make sure your test modules/packages have valid Python names.
  140. Traceback:
  141. tests/python/RadonBearTest.py:6: in <module>
  142.     from bears.python.RadonBear import RadonBear
  143. bears/python/RadonBear.py:2: in <module>
  144.     import radon.complexity
  145. E   ModuleNotFoundError: No module named 'radon'
  146. __________________________________________________ ERROR collecting tests/python/VultureBearTest.py __________________________________________________
  147. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/VultureBearTest.py'.
  148. Hint: make sure your test modules/packages have valid Python names.
  149. Traceback:
  150. tests/python/VultureBearTest.py:10: in <module>
  151.     from bears.python.VultureBear import VultureBear
  152. bears/python/VultureBear.py:4: in <module>
  153.     from vulture import Vulture
  154. E   ModuleNotFoundError: No module named 'vulture'
  155. ___________________________________________________ ERROR collecting tests/python/YapfBearTest.py ____________________________________________________
  156. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/YapfBearTest.py'.
  157. Hint: make sure your test modules/packages have valid Python names.
  158. Traceback:
  159. tests/python/YapfBearTest.py:5: in <module>
  160.     from bears.python.YapfBear import YapfBear
  161. bears/python/YapfBear.py:1: in <module>
  162.     from yapf.yapflib.yapf_api import FormatCode
  163. E   ModuleNotFoundError: No module named 'yapf'
  164. ___________________________________________ ERROR collecting tests/python/requirements/PySafetyBearTest.py ___________________________________________
  165. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/requirements/PySafetyBearTest.py'.
  166. Hint: make sure your test modules/packages have valid Python names.
  167. Traceback:
  168. tests/python/requirements/PySafetyBearTest.py:5: in <module>
  169.     from safety.safety import Vulnerability
  170. E   ModuleNotFoundError: No module named 'safety'
  171. _____________________________________ ERROR collecting tests/python/requirements/PySafetyBearWithoutMockTest.py ______________________________________
  172. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/python/requirements/PySafetyBearWithoutMockTest.py'.
  173. Hint: make sure your test modules/packages have valid Python names.
  174. Traceback:
  175. tests/python/requirements/PySafetyBearWithoutMockTest.py:4: in <module>
  176.     from bears.python.requirements.PySafetyBear import PySafetyBear
  177. bears/python/requirements/PySafetyBear.py:5: in <module>
  178.     from safety import safety
  179. E   ModuleNotFoundError: No module named 'safety'
  180. __________________________________________________ ERROR collecting tests/rest/reSTLintBearTest.py ___________________________________________________
  181. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/rest/reSTLintBearTest.py'.
  182. Hint: make sure your test modules/packages have valid Python names.
  183. Traceback:
  184. tests/rest/reSTLintBearTest.py:1: in <module>
  185.     from bears.rest.reSTLintBear import reSTLintBear
  186. bears/rest/reSTLintBear.py:1: in <module>
  187.     from restructuredtext_lint import lint
  188. E   ModuleNotFoundError: No module named 'restructuredtext_lint'
  189. ___________________________________________________ ERROR collecting tests/ruby/RuboCopBearTest.py ___________________________________________________
  190. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/ruby/RuboCopBearTest.py'.
  191. Hint: make sure your test modules/packages have valid Python names.
  192. Traceback:
  193. tests/ruby/RuboCopBearTest.py:10: in <module>
  194.     from bears.ruby.RuboCopBear import RuboCopBear
  195. bears/ruby/RuboCopBear.py:2: in <module>
  196.     import yaml
  197. E   ModuleNotFoundError: No module named 'yaml'
  198. __________________________________________________ ERROR collecting tests/scss/SCSSLintBearTest.py ___________________________________________________
  199. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/scss/SCSSLintBearTest.py'.
  200. Hint: make sure your test modules/packages have valid Python names.
  201. Traceback:
  202. tests/scss/SCSSLintBearTest.py:1: in <module>
  203.     from bears.scss.SCSSLintBear import SCSSLintBear
  204. bears/scss/SCSSLintBear.py:1: in <module>
  205.     import yaml
  206. E   ModuleNotFoundError: No module named 'yaml'
  207. ________________________________________________ ERROR collecting tests/vcs/git/GitCommitBearTest.py _________________________________________________
  208. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/vcs/git/GitCommitBearTest.py'.
  209. Hint: make sure your test modules/packages have valid Python names.
  210. Traceback:
  211. tests/vcs/git/GitCommitBearTest.py:11: in <module>
  212.     from bears.vcs.git.GitCommitBear import GitCommitBear
  213. bears/vcs/git/GitCommitBear.py:1: in <module>
  214.     import nltk
  215. E   ModuleNotFoundError: No module named 'nltk'
  216. _________________________________________________ ERROR collecting tests/yaml/TravisLintBearTest.py __________________________________________________
  217. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/yaml/TravisLintBearTest.py'.
  218. Hint: make sure your test modules/packages have valid Python names.
  219. Traceback:
  220. tests/yaml/TravisLintBearTest.py:3: in <module>
  221.     import requests_mock
  222. E   ModuleNotFoundError: No module named 'requests_mock'
  223. __________________________________________________ ERROR collecting tests/yaml/YAMLLintBearTest.py ___________________________________________________
  224. ImportError while importing test module '/home/manankalra/stuff/coala/coala-bears/tests/yaml/YAMLLintBearTest.py'.
  225. Hint: make sure your test modules/packages have valid Python names.
  226. Traceback:
  227. tests/yaml/YAMLLintBearTest.py:4: in <module>
  228.     from bears.yaml.YAMLLintBear import YAMLLintBear
  229. bears/yaml/YAMLLintBear.py:4: in <module>
  230.     import yaml
  231. E   ModuleNotFoundError: No module named 'yaml'
  232. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 26 errors during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  233. ============================================================== 26 error in 3.22 seconds ==============================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement