テストコマンドの指定 - AWS CodeBuild

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

テストコマンドの指定

テストケースを実行するコマンドは、buildspec ファイルの commands セクションで指定します。これらのコマンドは、buildspec ファイルの reports セクションでレポートグループに指定されたテストケースを実行します。次に、テストファイルでテストを実行するコマンドを含むサンプル commands セクションを示します。

commands: - echo Running tests for surefire junit - mvn test -f surefire/pom.xml -fn - echo - echo Running tests for cucumber with json plugin - mvn test -Dcucumber.options="--plugin json:target/cucumber-json-report.json" -f cucumber-json/pom.xml -fn

詳細については、「buildspec の構文」を参照してください。