You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
coverage==5.0 has been release on 14.12.2019 (2 days ago). This broke the CI/CD, as pip cannot resolve the version conflict:
pytest-cov wants coverage>=4.4, and is executed first.
coverage==5.0 is found and installed.
coveralls wants coverage<5.0, but it is too late to reinstall.
The fix is to install coverage<5.0 before any of the dependencies request it. The solution is temporary by its nature. See #273 for a more generic approach (version pinning and auto-upgrading) — will be done somewhen later.
Types of Changes
Bug fix (non-breaking change which fixes an issue)
The text was updated successfully, but these errors were encountered:
Resolve
coveralls
vs.pytest-cov
battle forcoverage
versions due tocoverage==5.0
release 2 days ago.Description
coverage==5.0
has been release on 14.12.2019 (2 days ago). This broke the CI/CD, as pip cannot resolve the version conflict:pytest-cov
wantscoverage>=4.4
, and is executed first.coverage==5.0
is found and installed.coveralls
wantscoverage<5.0
, but it is too late to reinstall.The fix is to install
coverage<5.0
before any of the dependencies request it. The solution is temporary by its nature. See #273 for a more generic approach (version pinning and auto-upgrading) — will be done somewhen later.Types of Changes
The text was updated successfully, but these errors were encountered: