nteract / testbook

🧪 📗 Unit test your Jupyter Notebooks the right way
https://testbook.readthedocs.io
BSD 3-Clause "New" or "Revised" License
416 stars 37 forks source link

Remove codecov dependency #157

Open johannes-mueller opened 1 year ago

johannes-mueller commented 1 year ago

From yesterday on, the codecov package is no longer available on pypi. That makes pip install testbook[dev] fail as the dependency to codecov cannot be resolved.

https://about.codecov.io/blog/message-regarding-the-pypi-package/

Workaround is to use

pip install testbook ipykernel

instead.

rohitsanj commented 1 month ago

Looks like they re-instated the coverage package to PyPI on Apr 17, 2023. Either way, I've removed codecov as dev dependency in #158.

johannes-mueller commented 1 month ago

Thanks a lot.