From fccc70cce592cdd437bd459adad46536d2c9bc0c Mon Sep 17 00:00:00 2001 From: Sergey Zhuk Date: Mon, 1 Apr 2024 15:42:55 +0100 Subject: [PATCH] ci: PLT-268: fix report filename --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 97273e17..d90089cf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -87,14 +87,14 @@ jobs: run: | source $VENV cd tests/ - poetry run pytest --junitxml report.xml --cov=. -vv + poetry run pytest --junitxml coverage.xml --cov=. -vv - name: Run tests with coverage if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }} run: | source $VENV cd tests/ - poetry run pytest --junitxml report.xml --cov=. -vv + poetry run pytest --junitxml coverage.xml --cov=. -vv - name: Upload to Codecov if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}