因此,我创建并部署了一个教程AWS CodeStar项目[https://github.com/aamalik7196/Testv4]。这些文件是由AWS自己创建的,用于运行一个简单的Hello World示例项目。
我更改的唯一更改是在buildspec.yml文件中创建测试报告,如下所示:
version: 0.2
phases:
install:
runtime-versions:
python: 3.8
commands:
# Upgrade AWS CLI to the latest version
- pip install --upgrade awscli
pre_build:
commands:
# Discover and run unit tests in the 'tests' directory. For more information, see <https://docs.python.org/3/library/unittest.html#test-discovery>
- python -m unittest discover tests
build:
commands:
# Use AWS SAM to package the application by using AWS CloudFormation
- aws cloudformation package --template template.yml --s3-bucket $S3_BUCKET --output-template template-export.yml
# Do not remove this statement. This command is required for AWS CodeStar projects.
# Update the AWS Partition, AWS Region, account ID and project ID in the project ARN on template-configuration.json file so AWS CloudFormation can tag project resources.
- sed -i.bak 's/\$PARTITION\$/'${PARTITION}'/g;s/\$AWS_REGION\$/'${AWS_REGION}'/g;s/\$ACCOUNT_ID\$/'${ACCOUNT_ID}'/g;s/\$PROJECT_ID\$/'${PROJECT_ID}'/g' template-configuration.json
# post-build:
# commands:
# - echo In post build phase
# only part added
reports:
TestReport: # CodeBuild will create a report group called "TestReport".
files: #Store all of the files
- '**/*'
artifacts:
files:
- template-export.yml
- template-configuration.json存储库包含一个文件夹,用于执行简单的测试。使用亚马逊网络服务CodeStar成功地进行了构建和部署,但是当我去查看reports选项卡时,它是空的。我知道测试实际上是在构建日志中运行的,但是报告是空的。
发布于 2020-04-10 17:27:35
运行find ./以确认测试结果文件已生成。另外,在'reports‘部分,指定确切的文件名。
下面是我用来检查和确认功能的构建规范示例:
version: 0.2
phases:
install:
runtime-versions:
python: 3.8
pre_build:
commands:
- aws --version
post_build:
commands:
- wget https://raw.githubusercontent.com/qmetry/cucumber-javascript-example/master/test-result.json
- find ./
reports:
rspec:
files:
- 'test-result.json'
file-format: CucumberJsonhttps://stackoverflow.com/questions/61111651
复制相似问题