ztane/python-Levenshtein

coverage cannot import Levenshtein

karlkaebnick opened this issue · 1 comments

I have a file 'dummy.py' that contains only the line: import Levenshtein.

Running python dummy.py causes no problems, but running coverage 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?

Upgraded coverage from version 4.3.4 to version 4.4.1 and the problem went away, so I am closing the issue.