From a1c64c9b2e47ca18dbe88d456eebd86ddf95fb5d Mon Sep 17 00:00:00 2001 From: Dave Skender <8432125+DaveSkender@users.noreply.github.com> Date: Mon, 1 Apr 2024 01:35:17 -0400 Subject: [PATCH] tweak --- .github/workflows/test-indicators.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-indicators.yml b/.github/workflows/test-indicators.yml index 5271c93e..cd3625f6 100644 --- a/.github/workflows/test-indicators.yml +++ b/.github/workflows/test-indicators.yml @@ -56,13 +56,14 @@ jobs: if: env.IS_PRIMARY == 'true' run: > pytest -vr A tests - --junitxml=pytest.xml + --junitxml=test-results.xml + --cov=stock_indicators --cov-report term - --cov=stock_indicators pytest-coverage.txt + --cov-report xml:coverage.xml - name: Post test summary uses: MishaKav/pytest-coverage-comment@main if: env.IS_PRIMARY == 'true' with: - pytest-coverage-path: pytest-coverage.txt - junitxml-path: pytest.xml + pytest-xml-coverage-path: coverage.xml + junitxml-path: test-results.xml