-
Notifications
You must be signed in to change notification settings - Fork 2
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
Improve testing coverage #2076
Labels
Comments
For reference: While not perfect, there's data here: https://codecov.io/gh/mitodl/mitxpro |
1 task
Here is a list of all the files which have code coverage less than
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Our testing coverage is sitting at ~82% as of this writing, we should try to improve that, so we should have some goals:
Historically, most of our other projects hover around 95%, but 100% coverage is achievable by annotate lines that are difficult or impossible to cover with
# pragma: no cover
. This annotation should be used very sparingly.--cov-fail-under=NN
for our baseline coverage percentage, increasing it as we work our way to 100% coverageThe text was updated successfully, but these errors were encountered: