Collaboration using github and testing the code

Posted by wyred on Programmers See other posts from Programmers or by wyred
Published on 2012-11-30T07:52:51Z Indexed on 2012/11/30 11:20 UTC
Read the original article Hit count: 390

Filed under:
|
|
|

The procedure in my team is that we all commit our code to the same development branch. We have a test server that runs updated code from this branch so that we can test our code on the servers.

The problem is that if we want to merge the development branch to the master branch in order to publish new features to our production servers, some features that may not have been ready will be applied to the production servers.

So we're considering having each developer work on a feature/topic branch where each of them work on their own features and when it's ready, merge it into the development branch for testing, and then into the master branch.

However, because our test server only pulls changes from the development branch, the developers are unable to test their features. While this is not a huge issue as they can test it on their local machine, the only problem I foresee is if we want to test callbacks from third-party services like sendgrid (where you specify a url for sendgrid to update you on the status of emails sent out).

How to handle this problem?

Note: We're not advanced git users. We use the Github app for MacOSX and Windows to commit our work.

© Programmers or respective owner

Related posts about testing

Related posts about git