Closed karlkaebnick closed 7 years ago
I have a file 'dummy.py' that contains only the line: import Levenshtein.
import Levenshtein
Running python dummy.py causes no problems, but running coverage run dummy.py generates the error:
python dummy.py
coverage run dummy.py
Traceback (most recent call last): File "dummy.py", line 1, in <module> import Levenshtein ImportError: No module named 'Levenshtein'
Apparently there is some kind of conflict between coverage and Levenshtein?
Upgraded coverage from version 4.3.4 to version 4.4.1 and the problem went away, so I am closing the issue.
I have a file 'dummy.py' that contains only the line:
import Levenshtein
.Running
python dummy.py
causes no problems, but runningcoverage run dummy.py
generates the error:Traceback (most recent call last): File "dummy.py", line 1, in <module> import Levenshtein ImportError: No module named 'Levenshtein'
Apparently there is some kind of conflict between coverage and Levenshtein?