-
Notifications
You must be signed in to change notification settings - Fork 40
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
Allow non-ascii keys #240
Allow non-ascii keys #240
Conversation
@webknjaz LGTM checks blocking merging is a little annoying. We have flake8 setup now, so it should rarely trigger any errors anyway. |
Doesn't it make LGTM even more significant? I mean that it catches things flake8 missed? It's not like WPS linter set is integrated. |
Problem is that it takes 15+ mins to complete (compared with <1 min for everything else), and will find an issue in probably about 1 in 500 PRs. I'd rather merge smaller PRs without waiting, and in the unlikely chance of it finding an issue, it can be fixed in a followup PR. I think this is how all the other repos are being used as well, including aiohttp. |
@Dreamsorcerer more complex checks usually need more resources so it's kinda expected. I wouldn't judge the quality/usefulness of a check by this metric. Moreover, staring at the CI log in order to catch it as soon as it turns green, is a waste of time for a human — you shouldn't need to babysit it, it's done when it's done. If the CI is blocking you from performing other unrelated activities, you're likely doing something wrong. Instead, let automation do the merge if the checks pass, it doesn't really require any attention from you. Use the FWIW the human's job is to perform a human review and the checks are on the automation (https://mtlynch.io/human-code-reviews-1/#let-computers-do-the-boring-parts) — you look into them only if and after something breaks. |
Fixes #118.