From 3e3d52c502c9c660c65b6ebe6380ebf3ba274159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=B6ger?= Date: Wed, 14 Feb 2024 15:35:25 +0100 Subject: [PATCH] debugging workflow --- .github/workflows/pytest-coverage.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pytest-coverage.yml b/.github/workflows/pytest-coverage.yml index f17f661..d662679 100644 --- a/.github/workflows/pytest-coverage.yml +++ b/.github/workflows/pytest-coverage.yml @@ -29,6 +29,10 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi pip install pytest pytest-cov + - name: Git submodule initialization + run: | + git submodule update --init --recursive + - name: Run pytest with coverage run: | python3 -m coverage run -m pytest tests --junitxml=report.xml; coverage report -i --include=src/*