在gitlab上运行测试后,Junit报告不会更新



我在gitlab cigitlab runner上运行了自动测试,除了报告之外,所有测试都很好。测试后,junit报告不更新,始终显示相同的通过和不通过测试,即使cmd显示不同数量的通过测试。

Gitlab脚本:

stages:
- build
- test

docker-build-master:
image: docker:latest
stage: build
services:
- docker:dind
before_script:
- docker login -u "xxx" -p "yyy" docker.io
script:
- docker build ./AutomaticTests --pull -t "dockerImage" 
- docker image tag dockerImage xxx/dockerImage:0.0.1
- docker push "xxx/dockerImage:0.0.1"

test:
image: docker:latest
services:
- docker:dind
stage: test
before_script:
- docker login -u "xxx" -p "yyy" docker.io
script: 
- docker run "xxx/dockerImage:0.0.1"
artifacts:
when: always
paths:
- AutomaticTests/bin/Release/artifacts/test-result.xml
reports:
junit:
- AutomaticTests/bin/Release/artifacts/test-result.xml

Dockerfile:

FROM mcr.microsoft.com/dotnet/core/sdk:2.1

COPY /publish  /AutomaticTests
WORKDIR /AutomaticTests
RUN apt-get update -y
RUN apt install unzip
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN dpkg -i google-chrome-stable_current_amd64.deb; apt-get -fy install
RUN curl https://chromedriver.storage.googleapis.com/84.0.4147.30/chromedriver_linux64.zip -o /usr/local/bin/chromedriver
RUN unzip -o /usr/local/bin/chromedriver -d /AutomaticTests
RUN chmod 777 /AutomaticTests

CMD dotnet vstest /Parallel AutomaticTests.dll --TestAdapterPath:. --logger:"nunit;LogFilePath=..artifactstest-result.xml;MethodFormat=Class;FailureBodyFormat=Verbose"

我在gitlab管道的docker中使用docker时遇到了类似的问题。您在容器内运行测试。因此,测试结果存储在您的";"待测容器";。然而,gitlab ci路径引用的不是";"待测容器";,但是docker环境中docker的外部容器。

您可以尝试通过以下方式将图像中的测试结果直接复制到外部容器中:

mkdir reports
docker cp $(docker create --rm DOCKER_IMAGE):/ABSOLUTE/FILEPATH/IN/DOCKER/CONTAINER reports/.

所以,在你的情况下,这会是这样的(未经测试…!(:

...
test:
image: docker:latest
services:
- docker:dind
stage: test
before_script:
- docker login -u "xxx" -p "yyy" docker.io
script: 
- mkdir reports
- docker cp $(docker create --rm xxx/dockerImage:0.0.1):/AutomaticTests/bin/Release/artifacts/test-result.xml reports/.
artifacts:
when: always
reports:
junit:
- reports/test-result.xml
...

另外,有关docker cp命令的更详细解释,请参阅本文:https://stackoverflow.com/a/59055906/6603778

请记住,docker cp需要一个指向要从容器中复制的文件的绝对路径。

最新更新