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
{{ message }}
This repository has been archived by the owner on Nov 23, 2017. It is now read-only.
Sometimes people do not realize issues in code until they spend a lot of time running it and then it run into rare code cases where it fails on. Sometimes it is good to check those cases externally.
Here is their homepage for more info: https://www.codacy.com/ It actually rates their code on projects and also has C and cpp checks as well. It rates code by the following:
No issues = A
some issues = B
and anything more is C or lower.
Otherwise it can check things lie PEP8 things as well.
(Sadly it does not check for bugs on working code to check for things like race conditions in futures.) (And I know of some cases that using a normal for loop can sometimes exit the for loop before it is complete and do other things and then reenter the for loop instead of staying in that for loop and then exiting it when complete which is such a tricky bug to fix.)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Sometimes people do not realize issues in code until they spend a lot of time running it and then it run into rare code cases where it fails on. Sometimes it is good to check those cases externally.
Here is their homepage for more info: https://www.codacy.com/ It actually rates their code on projects and also has C and cpp checks as well. It rates code by the following:
No issues = A
some issues = B
and anything more is C or lower.
Otherwise it can check things lie PEP8 things as well.
(Sadly it does not check for bugs on working code to check for things like race conditions in futures.)
(And I know of some cases that using a normal for loop can sometimes exit the for loop before it is complete and do other things and then reenter the for loop instead of staying in that for loop and then exiting it when complete which is such a tricky bug to fix.)
The text was updated successfully, but these errors were encountered: