CI with Django
Source: https://www.fullstackpython.com/continuous-integration.html
Last updated
Source: https://www.fullstackpython.com/continuous-integration.html
Last updated
Automates the building, testing and deploying of applications.
CI can dramatically reduce deployment times by minimizing steps that require human intervention.
Only minor downside: it takes some initial time by a developer to set up and then there is some ongoing maintainence if a project is broken into multiple parts, such as going from a monolith architecture to .
Another major advantage of CI.
Broken deployments can be prevented by running a comprehensive test suite of and when developers check in code to a source code repository.
Any bugs accidentally introduced during a check-in that are caught by the test suite are reported and prevent the deployment from proceeding.
High level perspective on how CI and deployment can work
New code is committed to a source repository
A hook that notifies the CI server that new code needs to be built
The CI server pulls the code to build and test it
If all tests pass, the CI server begins the deployment process
The new code is pulled down to the server where the deployment is taking place
The deployment process is completed via restarting services and related deployment activities.
There are many other ways a CI server and its deployments can be structured.
Free and open source CI servers that are configurable based on a project's needs:
Commonly used as a CI server implementation for Python projects.
Open source and programming language agnostic.
is a common CI server for building and deploying to test and production servers. .
is a CI server by that was designed with best practices for the build and test & release cycles in mind. .
is a continuous integration framework with a set of components for creating your own CI server. It's written in Python and intended for development teams that want more control over their build and deployment pipeline. .
is JetBrains' closed source CI server that requires a license to use.
Learn more via the following resources or on .
My book on walks through every step of setting up a Jenkins project with a WSGI application to enable continuous delivery. Take a look if you're not grokking all of the steps provided in these other blog posts.
shows how to set up a Ubuntu instance with a Jenkins server that'll build a project.
is another solid tutorial that also shows how to send email notifications as part of the build process.
is a classic detailed article by Martin Fowler on the concepts behind CI and how to implement it.
is not specific to Python but a great read on what it entails.
uses well done drawings to show how continuous integration and delivery works for testing and managing data.
is a retrospective on learning CI from a Rackspace intern on how she learned the subject.
gives a high level overview of six CI tools from a programming language agnostic perspective.
explains the UK's Government Digital Service continuous integration configuration that relies on .
lists a slew of hosted CI services roughly ranked by user upvotes.
includes advice on checking in code, commit tests and reverting to previous revisions.
gives an interesting perspective on ways to rank the effectiveness of how teams use their CI tooling.
is a high-level overview of how CI can build trust both among developers and between developers and non-technical people in an organization. The post also discusses tasks related to setting up reliable CI such as test environments, and visibility into the CI results.
(PDF) strongly advises securing your continuous integration server just as you would every other part of your production application, unless you want your environment to be vulnerable to malicious actors.
provides metrics for what you should measure with your CI/CD setup to improve the process for helping your development teams ship code.
has some solid general advice for culling problematic tests, ensuring the integration speed supports the development culture you are building and keeping all code in source control instead of having complicated logic configured within the CI server.
gives a high level overview of concepts such as shipping velocity, test execution and environment provisioning with regards to CI configurations.