How can QA test multiple features at once with fea

2019-04-16 07:02发布

If developers were to work on different branches for different features I understand that they can give a QA build from the feature branch and once it is tested it can be merged with "develop". But if the QA team is fairly large and can test multiple features at once how can they be given a build containing features that are residing in different branches?

1条回答
小情绪 Triste *
2楼-- · 2019-04-16 07:55

But if the QA team is fairly large and can test multiple features at once how can they be given a build containing features that are residing in different branches?

That would be by:

  • setting up an integration branch, reset to the latest master,
  • asking for the developers to push their feature branch OR
  • or fetching the different developer's repositories, and merging the right feature branches in the integration branch
  • running tests in said integration branch
查看更多
登录 后发表回答