From c5b8eb2747e54194c0f53ce58a5257eefccf5348 Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Tue, 4 Jun 2024 16:54:02 +0200 Subject: [PATCH] REMOVE: external step --- .github/workflows/python-ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index e19eecd3..33cfd7f8 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -20,9 +20,13 @@ jobs: - uses: Whist-Team/actions/setup-poetry@v2 with: python-version: ${{ matrix.python-version }} + - name: Pytest + run: 'poetry run python -m pytest --cov=whist_core --cov-report=xml --cov-config=.coveragerc' - - name: Test with pytest & coverage - uses: Whist-Team/actions/test-cov@v2 + - name: Upload to codecoverage + uses: codecov/codecov-action@v4 with: - package: whist_core + file: ./coverage.xml + fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} +