From 8b746bb9ff607950a73850d3cb0432f3d5538c63 Mon Sep 17 00:00:00 2001 From: Jon Date: Fri, 17 May 2024 16:52:02 +0930 Subject: [PATCH] ci: correct junit report name !5 --- .gitlab/pytest.gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab/pytest.gitlab-ci.yml b/.gitlab/pytest.gitlab-ci.yml index f9800d88..7639e38f 100644 --- a/.gitlab/pytest.gitlab-ci.yml +++ b/.gitlab/pytest.gitlab-ci.yml @@ -8,7 +8,7 @@ Unit: - pip install -r requirements.txt - pip install -r requirements_test.txt - cd app - - pytest --cov --cov-report term --cov-report xml:../artifacts/coverage.xml --cov-report html:../artifacts/coverage/ --junit-xml=../artifacts/test.junit.xml + - pytest --cov --cov-report term --cov-report xml:../artifacts/coverage.xml --cov-report html:../artifacts/coverage/ --junit-xml=../artifacts/test.JUnit.xml coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/' artifacts: expire_in: "30 days"