-
Book Overview & Buying
-
Table Of Contents
Hands-On Software Engineering with Python - Second Edition
By :
The post-development practices that software engineers are most likely to be participants in are focused on what happens with code, once it is complete — specifically, how the final code is tested, built, packaged, and distributed. Those are most likely to be Continuous Integration and Continuous Delivery or Continuous Deployment.
Continuous Integration (CI) is a repeatable, automated process for merging new or altered code into a common, shared environment, either on some sort of timed basis or because of some event such as committing changes to a source control system.
Its primary goal is to try and detect potential integration problems as early in the code promotion or deployment process as possible so that any issues that arise can be resolved before they are deployed to a live, production branch. Implementing a CI process, regardless of any specific tools that might be used to control or manage it, has a few...