Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.07 KB

README.md

File metadata and controls

30 lines (18 loc) · 1.07 KB

DATAP

Branching strategy

This project uses the the standard git-flow branching strategy in case you are not familure with you may like to review the github git-flow guide or just get the commands on the git-flow cheatsheet

Howto git-flow

This flow is for single developer per feature, please review and refine the process for squads and teams.

git flow feature start my_awesome_feature

develop the feature and when you are done

git flow feature finish my_awesome_feature git flow release start my_awesome_feature git flow release finish my_awesome_feature

Create Pull request in github

After reviewing the pull request it will be merged into main branch.

TTD Framework

TDD is done by using the pytest framework utilizing, mock and patch While mocking the architecture first it will automatically gain the interfaces of the different software modules.

All tasks should start with tests in branching and follow with the modules development.