Blog
In order to use prancer-cli for DevOps Pipelines in Microsoft Azure, you can follow the below steps:
Create a YAML file named azure-pipelines.yml with the below content:
trigger:
- master
pool:
vmImage: 'ubuntu-18.04'
steps:
- script:
pip3 –version
sudo pip3 install prancer-cli==1.0.6
displayName: ‘prepare-env’
– script:
prutil -a create
prutil -t default_container -o
displayName: ‘run-test’
For more information different ways to trigger the project you take a loon this on triggers