jupyterhub / tmpauthenticator

JupyterHub authenticator that hands out temporary accounts for everyone. For use in tmpnb.org
BSD 3-Clause "New" or "Revised" License
23 stars 18 forks source link

ci: fix coverage report by installing as editable #49

Closed consideRatio closed 1 year ago

consideRatio commented 1 year ago

When we write pytest --cov=tmpauthenticator we are pointing to the local folder and its .py files. But those are not relevant if we haven't done pip install -e ., because then what is consumed from tests doing from tmpauthenticator import ... is from some other location.

consideRatio commented 1 year ago

Woop woop 100% test coverage :)

image