From 7289dfb8ab11b8c9ecfab922ac624befcb527e90 Mon Sep 17 00:00:00 2001 From: Sarath Menon Date: Thu, 18 Apr 2024 15:37:43 +0200 Subject: [PATCH] add cov testing --- .github/workflows/testing.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d7856d1..7f1627f 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -28,5 +28,11 @@ jobs: pip install -e . pip install pytest pip install pytest-cov - pytest tests/ - #pytest --cov-report=xml --cov=pyscal tests/ + #pytest tests/ + pytest --cov-report=xml --cov=atomrdf tests/ + + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4.0.1 + with: + token: ${{ secrets.CODECOV_TOKEN }} + slug: pyscal/atomRDF \ No newline at end of file