From 0de9601e60627ac41852bc346fca29b00e17592d Mon Sep 17 00:00:00 2001 From: David Bold Date: Tue, 11 Jun 2024 13:08:26 +0200 Subject: [PATCH] CI: fix test with coverage --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f52fb7d..d5299de 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,12 +31,12 @@ jobs: - name: Install dependencies run: | - pip install -U pip pytest + pip install -U pip pytest pytest-cov pip install . - name: Test local run run: | - pytest -v --cov=./ + pytest -v --cov ./ lint: runs-on: ubuntu-latest