From 6e86e6b886d7744cba1faa80bf3d12c8ac8db3f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Tue, 27 Apr 2021 19:24:25 +0300 Subject: [PATCH] Readded codecov reporting (#402) Fixes #401. --- .github/workflows/codeqa-test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml index d176bdbb..0050bdd6 100644 --- a/.github/workflows/codeqa-test.yml +++ b/.github/workflows/codeqa-test.yml @@ -47,4 +47,8 @@ jobs: - name: Install test dependencies run: pip install .[test] - name: Test with pytest - run: python -b -m pytest -W always + run: python -b -m pytest -W always --cov-report=xml:pytest-cov.xml + - name: Send coverage data to Codecov + uses: codecov/codecov-action@v1 + with: + file: pytest-cov.xml