From 6eb534f2ee508014ecb74a0940330155878089f1 Mon Sep 17 00:00:00 2001 From: Caroline Malin-Mayor Date: Wed, 14 Feb 2024 11:35:39 -0500 Subject: [PATCH] Attempt to add coverage action --- .github/workflows/tests.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index fa581b97d..efa119c1e 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -34,4 +34,7 @@ jobs: pip install -r requirements-dev.txt - name: Test - run: pytest tests -s -v --color=yes + run: pytest --color=yes --cov --cov-report=xml --cov-report=term-missing + + - name: Coverage + uses: codecov/codecov-action@v3 \ No newline at end of file