From fc8092e73608afdcf05e25f871f2e249f35bac9c Mon Sep 17 00:00:00 2001 From: Jonas Scharpf Date: Fri, 5 Aug 2022 08:11:58 +0200 Subject: [PATCH] run nose2 test and coverage generation on release workflow --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df95d7c..0237b46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,6 +43,12 @@ jobs: skip_existing: true verbose: true print_hash: true + - name: Test with nose2 + run: | + python -m pip install .[test] + python create_report_dirs.py + nose2 --config tests/unittest.cfg + coverage xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: