I used to evaluate the coverage of python unittest with coverage, but when the build environment suddenly changed, I got an error with coverage.
When I looked it up, it seems that there was an error in the coverage package. Reference https://github.com/nedbat/coveragepy/issues/887
$ sudo pip uninstall coverage $ sudo pip install -U "coverage < 5"
You can install 5 or less versions with.
Recommended Posts