Closed jondoesntgit closed 6 years ago
This seems to be a problem with the vanilla install of codecov on windows. To solve this issue, find where codecov is stored on your local drive:
codecov
>>>import codecov >>>codecov.__file__
Then, in __init__.py of codecov, find the line where it says root = quote(root) and comment it out.
__init__.py
root = quote(root)
This seems to be a problem with the vanilla install of
codecov
on windows. To solve this issue, find wherecodecov
is stored on your local drive:Then, in
__init__.py
ofcodecov
, find the line where it saysroot = quote(root)
and comment it out.