我试图在Gitlab CI中运行机器人框架测试,并将生成的报告作为工件下载。到目前为止,我已经成功地在管道中运行了测试并生成了工件,但是生成的zip为空。我想念什么?
这是我的Dockerfile:
FROM ppodgorsek/robot-framework:latest
COPY resources /opt/robotframework/resources
COPY tests /opt/robotframework/tests
COPY libs /opt/robotframework/libs
这是我在gitlab-ci.yml中的阶段:
run robot tests dev:
variables:
# more variables
ROBOT_OPTIONS: "--variable ENV:dev -e FAIL -e PENDING"
allow_failure: true
services:
- name: docker:dind
stage: run-robot-tests
image: docker:latest
script:
- mkdir -p reports
# mode docker run commands
- docker -H $DOCKER_HOST run --rm --network localnet --env "ROBOT_OPTIONS=${ROBOT_OPTIONS}" -v reports:/opt/robotframework/reports --name robot $CONTAINER_DEV_IMAGE
artifacts:
name: ${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}
paths:
- reports/
when: always
tags:
- d-i-d
only:
refs:
- dev
我省略了一些特定于我们项目的细节。 但是只是为了让您对我们的设置有一个了解,我们将拉出docker映像ppodgorsek / robot-framework,并将其与针对运行我们项目前端的另一个docker容器一起运行测试。为了确保所有容器都在同一网络上,我们使用docker-in-docker。我们的后端容器和数据库也在同一个网络中。
这是我工作输出的尾巴。
==============================================================================
Tests | PASS |
3 critical tests, 3 passed, 0 failed
3 tests total, 3 passed, 0 failed
==============================================================================
Output: /opt/robotframework/reports/output.xml
Log: /opt/robotframework/reports/log.html
Report: /opt/robotframework/reports/report.html
Uploading artifacts...
reports/: found 1 matching files
Trying to load /builds/automation/system-tests.tmp/CI_SERVER_TLS_CA_FILE ...
Dialing: tcp gitlab.surfnet.nl:443 ...
Uploading artifacts to coordinator... ok id=42435 responseStatus=201 Created token=g8cWYYun
Job succeeded
您可以从运行测试中看到控制台输出,然后可以看到robot将生成的输出存储在何处。 接下来,它表明生成了工件,唯一的问题是它是空的。
答案 0 :(得分:2)
好的,我确实非常亲密。机器人框架社区的人们向我指出了正确的方向! :D
问题出在命令中:
- docker -H $DOCKER_HOST run --rm --network localnet --env "ROBOT_OPTIONS=${ROBOT_OPTIONS}" -v reports:/opt/robotframework/reports --name robot $CONTAINER_DEV_IMAGE
更具体地说,在卷的相对路径上:
-v reports:/opt/robotframework/reports
因此,解决方案使用的是绝对路径:
-v $PWD/reports:/opt/robotframework/reports