Testim Docs JA

Tricentis Testim ユーザー制作日本語翻訳ドキュメント

Azure DevOps ビルドパイプライン統合

Testim Docs

Azure Pipelines ロゴ

Azure pipelinesと Testim を統合するには、YAML ファイルに以下の行を追加する必要があります:

steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- script: |
npm install -g @testim/testim-cli
testim --label "<LABEL>" \
--token "<TOKEN>" \
--project "<PROJECT ID>" \
--grid "<Your grid name>" \
--report-file testim-tests-report.xml
displayName: 'npm install testim-cli and run tests'
- task: PublishTestResults@2
displayName: 'publish testim test results'
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: '**/testim-tests-report.xml'

注記: グリッド名については、こちらでグリッドの設定方法をご確認ください。