Ask HN: Do you pull and run code as part of code review?
71–80 of 146 posts
Re: Ask HN: Do you pull and run code as part of code review?
#72I'm a senior frontend engineer doing a lot of code reviews and my team loves my MR (PR) submission standard: - Require the author to attach screenshots of the feature in a markdown table format showing the before and after comparison. This is enforced using a MR template. - Require the author to attach screen recording for complex user interactions. Overall effect is that it saves everyone's time. - The author has to…
Re: Ask HN: Do you pull and run code as part of code review?
#73Re: Ask HN: Do you pull and run code as part of code review?
#74or as in the latest case when the developer has the newest msvc compiler with ' as digit separators, but the CI not.
Re: Ask HN: Do you pull and run code as part of code review?
#75I'm a senior frontend engineer doing a lot of code reviews and my team loves my MR (PR) submission standard: - Require the author to attach screenshots of the feature in a markdown table format showing the before and after comparison. This is enforced using a MR template. - Require the author to attach screen recording for complex user interactions. Overall effect is that it saves everyone's time. - The author has to…
This is great, do you do this in github? Or elsewhere? Just curious if you had a template to hand that myself and others could use =)...
Re: Ask HN: Do you pull and run code as part of code review?
#76Re: Ask HN: Do you pull and run code as part of code review?
#77Re: Ask HN: Do you pull and run code as part of code review?
#78I'm a big proponent of "trial by fire" reviews. The idea is to setup a dumpster environment, deploy the change there and give it for a spin to someone who's keenly interested in seeing some progress - sometimes it's the PM, other times the sales guy - anyone who has some time in between meetings and would appreciate a little bit of variety in their work life.
Such people are amazingly talented at finding catastrophic edge cases.
Re: Ask HN: Do you pull and run code as part of code review?
#79Yes. I didn't used to, but that was a very big mistake. Just wait until something you signed off on doesn't run and folks ask, "But didn't you review this code and say that everything 'looked good'? It doesn't even run!" It's embarrassing to say the least. If you're doing a code review, run the darn code. What would you think of a mechanic who didn't make sure the car was able to turn on after claiming it was fixed?
Which is to say 'it doesn't work' is nitpicking that reviewers shouldn't be wasting their time checking.