【发布时间】:2020-04-23 16:12:36
【问题描述】:
我正在尝试为 gitlab CI 配置作业,该作业应该运行放心测试并生成魅力报告。我想将报告导出到工件,但不知道如何。 这是作业配置
automation_tests:
stage: autotests
script:
- chmod +x gradlew
- echo "Starting automation testing"
- ./gradlew -g /cache/.gradle test --tests "RestAssuredTests"
- echo "Automation tests were executed"
- ./gradlew clean build allureReport ((???))
artifacts:
when: always
paths:
- report
【问题讨论】: