Reputation:
I am implementing continuous integration (Jenkins) and deployment in my project. We are doing manual testing.
My requirements are as below.
Can anyone suggest how to automate the process here since we are following manual testing? I need to trigger the deployment only after fixing all the errors.
Upvotes: 6
Views: 3522
Reputation: 37607
Requiring that manual tests be done before deploying a build prevents continuous deployment. This is the best you can do:
If you want continuous deployment, you'll have to take manual tests out of the path to deployment:
Upvotes: 9