Reputation: 31
We have to integrate our OpenTest automation with AWS CodeBuild. How can we run server, actor and template session in one terminal in linux ?
Upvotes: 0
Views: 93
Reputation: 12327
You can trigger a new test session by using the OpenTest CLI:
opentest session create --template <TEMPLATE_NAME> --wait --server <SERVER_IP>:<PORT>
For example:
opentest session create --template "My session template" --wait --server 1.2.3.4:3000
Of course, you have to make sure that:
opentest
command in the system path - basically make sure the opentest
command is available for your pipeline.Upvotes: 0