-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
coveralls is not working for python 3.5 or 3.8 #347
Comments
My tests are failing with this error with Python 3.6 as well. |
Seems related to this: z4r/python-coveralls#73 |
Seems like the 3.6 env is using coverage 5.0, while the passing 3.7 env is using coverage 4.x.x |
These guys pin the coverage module in the travel config
Maybe there is something like this that we can do, or similarly maybe we can pin the coveralls version in our setup.py? |
Okay, pinning coverage worked. See 0a7ba0b |
Issue reported also by others: creare-com/podpac#347
Commenting here since this thread shows up in Google searches often. There's no need to pin to an older version of coveralls. This combination is working for me:
|
The 3.5 and 3.8 jobs on TravisCI are failing because of the following error running
coveralls
:The error is the same in the python3.8 job.
Locally, I can
from coverage.report import Reporter
just fine in both python3.5 and python3.8 environments, so I'm not sure what's going on or how to really debug it.The text was updated successfully, but these errors were encountered: