From d43caa325d04cd2f796d293493dbbb93e52cad55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Cl=C3=A9rice?= <1929830+PonteIneptique@users.noreply.github.com> Date: Wed, 20 Mar 2024 11:18:18 +0100 Subject: [PATCH] Attempt to fix coverall relationship with the repo --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a5a6444..caeea16 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,10 @@ jobs: if: matrix.test_dbms == 'postgresql' - name: Test with nose run: | - pytest --doctest-modules --cov=app --verbose + pytest --doctest-modules --cov=app --verbose --cov-report=lcov - name: Coveralls Python - uses: AndreMiras/coveralls-python-action@v20201129 if: matrix.test_dbms == 'postgresql' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + coveralls