Show HN: Automatically create QA environments for your GitHub pull requests
1–10 of 21 posts
Re: Show HN: Automatically create QA environments for your GitHub pull requests
#2Re: Show HN: Automatically create QA environments for your GitHub pull requests
#3Re: Show HN: Automatically create QA environments for your GitHub pull requests
#4Dev here. Our team has grown to love the GitHub pull request workflow. We built Prune to solve one issue we consistently run into: how to QA on the various branches before merging. Happy to answer questions and thanks for any feedback!
Re: Show HN: Automatically create QA environments for your GitHub pull requests
#5Dev here. Our team has grown to love the GitHub pull request workflow. We built Prune to solve one issue we consistently run into: how to QA on the various branches before merging. Happy to answer questions and thanks for any feedback!
Re: Show HN: Automatically create QA environments for your GitHub pull requests
#6Dev here. Our team has grown to love the GitHub pull request workflow. We built Prune to solve one issue we consistently run into: how to QA on the various branches before merging. Happy to answer questions and thanks for any feedback!
Can you give more details about Visual Regression Testing? If you're comparing screenshots, how do you account for dynamic content?
Re: Show HN: Automatically create QA environments for your GitHub pull requests
#7Earlier quoted context omitted.
Can you give more details about Visual Regression Testing? If you're comparing screenshots, how do you account for dynamic content?
Sure! We use a web driver to simulate browsing in an actual client, so Javascript, etc. is executed as it normally would be.
Re: Show HN: Automatically create QA environments for your GitHub pull requests
#8I dig the visual regression thing, though I fear combinatorial explosion for big-ish changes if it goes through the whole site or application.
Re: Show HN: Automatically create QA environments for your GitHub pull requests
#9Dev here. Our team has grown to love the GitHub pull request workflow. We built Prune to solve one issue we consistently run into: how to QA on the various branches before merging. Happy to answer questions and thanks for any feedback!
Basically, we run a *.staging.domain.com; however, databases are always tied together. (This is for Wordpress purposes). We use [Genesis](https://github.com/genesis/) to achieve this effect.
So, do you guys work similarly to Travis-CI in that you run an instance, follow instructions in a file and how to provision and setup the site, and then instead of just running a unit test (like travis), you keep the instance running and expose it to public?
Do you use virtualization or docker instances? (Just curious!) How long do you keep them up and do you suspend the instances when it becomes disused? Will you be able to run a single instance at a time or many? (meaning, one branch at a time or will you have 20 environments setup for my 20 pull request).
In the future, will you support private repos?
Thanks! This looks REALLY badass! :)