Forum Discussion

BharathKumarV's avatar
2 years ago

Ready API Test Suite not running in the Azure pipelines

Hi Team, 

 

 We are using the Ready test suite in our project, we want to run those test suite with help of Azure, we created a pipeline. and when we triggered the pipelines, the pipeline build is showing   "Result Attachments will be stored in LogStore".. message and Pipeline getting failed. 

 

Pipeline:

riggernone # Disable CI triggers for 'SRE.Builds' repo.


variables:
groupA01528.Correspondence.Common
namesrcDevRepoName
  value$[ resources.repositories['srcDevRepo'].name ] 


name:  $(Build.DefinitionName)_$(srcDevBranch)_$(semVersion)$(Rev:.r)

pool:
   #name: ST-AgentPool
   #demands:
   #- Agent.OS -equals Windows_NT #Agent.OS -equals linux-latest #
   nameemsp pool


resources:
  repositories:
  - repositorysrcDevRepo
    path$(Build.SourcesDirectory)
    typegit
    nameDefault/Corr.MetadataService
    ref:  ReadyAPI_POC1

steps:

checkoutsrcDevRepo
  submodulestrue

taskPowerShell@2
  displayName'WorkaroundSet environment variables manually'
  inputs:
    targetType'inline'
    script: |
      Write-Host "##vso[task.setvariable variable=myVar;]foo"
      java -version

taskSoapUIProForAzureDevOpsTask@2
  displayName'SoapUI Pro for Azure DevOps'
  inputs:
    project'settings.xml'
    rootFolder'$(Common.TestResultsDirectory)'
    testSuite'API'
    environment'dev'
    licenseApiHostjp1ltlwjetbap01.lpsvcs.com
    licenseApiPort1099
    testRunnerPath'$(Build.SourcesDirectory)'
    authenticationMethod'legacy'
 
No RepliesBe the first to reply