From 68c5e68149518475230339076b0e5e6604d94f84 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Wed, 13 Oct 2021 09:46:05 +0100 Subject: [PATCH] coverage report added to CI --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7c4bdf41..d0608ae5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -29,6 +29,7 @@ jobs: python -m pip install --upgrade pip pip install -e . pip install pytest + pip install pytest-cov - name: Run tests - run: pytest -v + run: pytest --cov=pyerrors -v