Testim Docs JA

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

Circle CI 統合

Testim Docs

CircleCI ロゴ

YAML File

Circle CIのローカル Selenium Grid を使用して Testim と統合するには、circle.yaml ファイルに以下の行を追加する必要があります:

YAML

version: 2
jobs:
build:
environment:
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
docker:
- image: testim/docker-cli
steps:
- run: mkdir -p $CIRCLE_TEST_REPORTS/testim/
- run: testim --project "<PROJECT ID>" --label "<LABEL>" --grid "<Your grid name>" --token "<TOKEN>" --report-file $CIRCLE_TEST_REPORTS/testim/results.xml
- store_artifacts:
path: /tmp/circleci-test-results
- store_test_results:
path: /tmp/circleci-test-results

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