In the context of CI/CD (Continuous Integration/Continuous Delivery), when should database tests be executed?

  • After each database change or migration
  • At the beginning of the development cycle
  • At the end of the development cycle
  • Only during scheduled testing phases
Database tests should be executed after each database change or migration in a CI/CD pipeline. This ensures that any modifications made to the database are immediately validated, preventing integration issues and maintaining the stability of the system throughout the development process.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *